independent-analytics
/
vendor
/
illuminate
/
contracts
/
Support
/
CanBeEscapedWhenCastToString.php
Arrayable.php
3 weeks ago
CanBeEscapedWhenCastToString.php
2 years ago
DeferrableProvider.php
2 years ago
DeferringDisplayableValue.php
2 years ago
Htmlable.php
2 years ago
Jsonable.php
2 years ago
MessageBag.php
2 years ago
MessageProvider.php
2 years ago
Renderable.php
2 years ago
Responsable.php
2 years ago
ValidatedData.php
2 years ago
CanBeEscapedWhenCastToString.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Contracts\Support; |
| 4 | |
| 5 | /** @internal */ |
| 6 | interface CanBeEscapedWhenCastToString |
| 7 | { |
| 8 | /** |
| 9 | * Indicate that the object's string representation should be escaped when __toString is invoked. |
| 10 | * |
| 11 | * @param bool $escape |
| 12 | * @return $this |
| 13 | */ |
| 14 | public function escapeWhenCastingToString($escape = \true); |
| 15 | } |
| 16 |