/**
  * @expectedException Error
  */
 public function testConfigureFailsOnPrivateProperty()
 {
     $obj = new SupportConfigurableClass();
     Helpers::configure($obj, ['foo' => 'foo']);
 }
Example #2
0
 /**
  * @param string $id
  * @param array $options
  */
 public function __construct(array $options = [])
 {
     Helpers::configure($this, $options);
 }