Foo.php 189 B

12345678910111213
  1. <?php
  2. namespace ZendBench\ServiceManager\BenchAsset;
  3. class Foo
  4. {
  5. protected $options;
  6. public function __construct($options = null)
  7. {
  8. $this->options = $options;
  9. }
  10. }