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