gnu-social/vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/Foo.php

13 lines
189 B
PHP
Raw Normal View History

2020-08-07 23:42:38 +01:00
<?php
namespace ZendBench\ServiceManager\BenchAsset;
class Foo
{
protected $options;
public function __construct($options = null)
{
$this->options = $options;
}
}