| 1 | <?php  | 
            ||
| 14 | class LinkItemConverter implements ConverterInterface  | 
            ||
| 15 | { | 
            ||
| 16 | /**  | 
            ||
| 17 | * @param FieldItemInterface $value  | 
            ||
| 18 | */  | 
            ||
| 19 | public function convert(FieldItemInterface $value)  | 
            ||
| 26 | |||
| 27 | /**  | 
            ||
| 28 | * Returns whether the FieldItemInterface can be converted or not.  | 
            ||
| 29 | *  | 
            ||
| 30 | * @param FieldItemInterface $value  | 
            ||
| 31 | *  | 
            ||
| 32 | * @return bool  | 
            ||
| 33 | */  | 
            ||
| 34 | public function canConvert(FieldItemInterface $value) : bool  | 
            ||
| 38 | }  | 
            ||
| 39 |