gnu-social/vendor/zetacomponents/base/tests/test_options.php
2021-07-16 19:44:40 +01:00

18 lines
438 B
PHP

<?php
class ezcBaseTestOptions extends ezcBaseOptions
{
protected $properties = array( "foo" => "bar", "baz" => "blah" );
public function __set( $propertyName, $propertyValue )
{
if ( $this->__isset( $propertyName ) )
{
$this->properties[$propertyName] = $propertyValue;
}
else
{
throw new ezcBasePropertyNotFoundException( $propertyName );
}
}
}
?>