mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
19 lines
422 B
PHP
19 lines
422 B
PHP
<?php
|
|
class ezcBaseTestOptions extends ezcBaseOptions
|
|
{
|
|
protected $properties = array( "foo" => "bar" );
|
|
|
|
public function __set( $propertyName, $propertyValue )
|
|
{
|
|
if ( $this->__isset( $propertyName ) )
|
|
{
|
|
$this->properties[$propertyName] = $propertyValue;
|
|
}
|
|
else
|
|
{
|
|
throw new ezcBasePropertyNotFoundException( $propertyName );
|
|
}
|
|
}
|
|
}
|
|
?>
|