TplBlock/vendor/zendframework/zend-servicemanager/benchmarks/BenchAsset/Foo.php

13 lines
189 B
PHP
Raw Normal View History

2018-03-26 21:57:35 +02:00
<?php
namespace ZendBench\ServiceManager\BenchAsset;
class Foo
{
protected $options;
public function __construct($options = null)
{
$this->options = $options;
}
}