AlkantarClanX12

Your IP : 18.119.125.240


Current Path : /home/thanudqk/siamfreetour.com/wp-content/plugins/contact-form-7/includes/
Upload File :
Current File : /home/thanudqk/siamfreetour.com/wp-content/plugins/contact-form-7/includes/pocket-holder.php

<?php

/**
 * Handy trait provides methods to handle dynamic properties.
 */
trait WPCF7_PocketHolder {

	protected $pocket = array();

	public function pull( $key ) {
		if ( isset( $this->pocket[$key] ) ) {
			return $this->pocket[$key];
		}
	}

	public function push( $key, $value ) {
		$this->pocket[$key] = $value;
	}

}