gnu-social/vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/Foo.php
2020-08-07 23:42:38 +01:00

13 lines
189 B
PHP

<?php
namespace ZendBench\ServiceManager\BenchAsset;
class Foo
{
protected $options;
public function __construct($options = null)
{
$this->options = $options;
}
}