| 1 | <?php |
||
| 19 | class DescriptionValueNode extends Rule implements AstValueInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | public function toPrimitive(): string |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param Readable $file |
||
| 31 | * @return ValueInterface |
||
| 32 | */ |
||
| 33 | public function toValue(Readable $file): ValueInterface |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return StringValueNode |
||
| 40 | */ |
||
| 41 | private function toString(): StringValueNode |
||
| 45 | } |
||
| 46 |