| 1 | <?php |
||
| 5 | abstract class EscapedProxy |
||
| 6 | { |
||
| 7 | protected $escape; |
||
| 8 | protected $wrapped; |
||
| 9 | |||
| 10 | 28 | protected function __construct($wrapped, callable $escape) { |
|
| 14 | |||
| 15 | 4 | public function __unwrap() { |
|
| 18 | |||
| 19 | 24 | public function __toString() { |
|
| 22 | |||
| 23 | 32 | public static function create($wrapped, callable $escape) { |
|
| 33 | } |
||
| 34 |