| 1 | <?php |
||
| 7 | class ImageVariable extends AbstractVariable |
||
| 8 | { |
||
| 9 | private $imageFactory; |
||
| 10 | private $alt; |
||
| 11 | |||
| 12 | public function __construct(string $src, ImageFactory $imageFactory, ?string $alt = '') |
||
| 19 | |||
| 20 | public static function make(string $value, ImageFactory $imageFactory, ?string $alt = '') : ImageVariable |
||
| 24 | |||
| 25 | public function parse() : AbstractVariable |
||
| 37 | } |
||
| 38 |