gnu-social/vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/Foo.php
2021-07-16 19:44:40 +01:00

13 lines
189 B
PHP

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