_data[ $property ] ) ? $this->_data[ $property ] : null; } /** * __set function. * * @access public * @param mixed $property * @param mixed $value * @return void */ public function __set( $property, $value ) { $this->_data[ $property ] = $value; $this->_dirty = true; } /** * __isset function. * * @access public * @param mixed $property * @return bool */ public function __isset( $property ) { return isset( $this->_data[ $property ] ); } /** * __unset function. * * @access public * @param mixed $property * @return void */ public function __unset( $property ) { if ( isset( $this->_data[ $property ] ) ) { unset( $this->_data[ $property ] ); $this->_dirty = true; } } /** * get_customer_id function. * * @access public * @return void */ public function get_customer_id() { return $this->_customer_id; } }