File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/pocket-holder.php.tar
www/vhosts/uyarreklam.com.tr/httpdocs/wp-content/plugins/contact-form-7/includes/pocket-holder.php 0000644 00000000505 15154150557 0030242 0 ustar 00 var <?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;
}
}