| 1 | <?php |
||
| 19 | class NullConverter implements ConverterInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var mixed |
||
| 23 | */ |
||
| 24 | protected $nullValue; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param mixed $nullValue |
||
| 28 | */ |
||
| 29 | 1 | public function __construct($nullValue = '') |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @param mixed $item |
||
| 36 | * |
||
| 37 | * @return mixed |
||
| 38 | */ |
||
| 39 | 2 | public function convert($item) |
|
| 47 | } |
||
| 48 |