Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| GhostOption | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| getValueForPrint | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace WebPConvert\Options; |
| 4 | |
| 5 | use WebPConvert\Options\Option; |
| 6 | use WebPConvert\Options\Exceptions\InvalidOptionValueException; |
| 7 | |
| 8 | /** |
| 9 | * Ghost option |
| 10 | * |
| 11 | * @package WebPConvert |
| 12 | * @author Bjørn Rosell <it@rosell.dk> |
| 13 | * @since Class available since Release 2.0.0 |
| 14 | */ |
| 15 | class GhostOption extends Option |
| 16 | { |
| 17 | |
| 18 | protected $typeId = 'ghost'; |
| 19 | |
| 20 | public function getValueForPrint() |
| 21 | { |
| 22 | return '(not defined for this converter)'; |
| 23 | } |
| 24 | } |