| 1 | <?php |
||
| 5 | abstract class AbstractSetOptionStringValue implements OptionInterface |
||
| 6 | { |
||
| 7 | /** @var mixed */ |
||
| 8 | private $valueForThisOption; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @param string $valueForThisOption |
||
| 12 | */ |
||
| 13 | public function __construct($valueForThisOption) |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return string |
||
| 20 | */ |
||
| 21 | public function value() |
||
| 25 | } |