1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
<?php
namespace Gedcomx\Common;
interface HasTransientProperties
{
/**
* Get the transient properties.
*
* @return the transient properties.
*/
public function getTransientProperties();
/**
* Get a transient (non-serialized) property.
*
* @param string name The name of the property.
*
* @return mixed The property.
*/
public function getTransientProperty($name);
/**
* Set a transient (non-serialized) property.
*
* @param string name the name of the property.
* @param mixed value the property value.
*/
public function setTransientProperty($name, $value);
}