| 1 | <?php |
||
| 25 | class RawString |
||
| 26 | { |
||
| 27 | protected $expression; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * __construct |
||
| 31 | * |
||
| 32 | * Create a RawString. |
||
| 33 | * |
||
| 34 | * @param string $expression |
||
| 35 | */ |
||
| 36 | public function __construct($expression) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * __toString |
||
| 43 | * |
||
| 44 | * String cast this instance. |
||
| 45 | * |
||
| 46 | * @return string |
||
| 47 | */ |
||
| 48 | public function __toString() |
||
| 52 | } |
||
| 53 |