| 1 | <?php |
||
| 5 | class Asset |
||
| 6 | { |
||
| 7 | protected $src; |
||
| 8 | |||
| 9 | protected $in_pjax; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @param string $src |
||
| 13 | */ |
||
| 14 | public function __construct(string $src, bool $in_pjax = false) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Is in pjax. |
||
| 22 | * |
||
| 23 | * @return bool |
||
| 24 | */ |
||
| 25 | public function inPjax() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * To string. |
||
| 32 | * |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public function __toString() |
||
| 39 | } |
||
| 40 |