| 1234567891011121314151617181920 |
- <?php
- declare(strict_types=1);
- namespace TestApp\View\Object;
- /**
- * TestObjectWithToString
- *
- * An object with the magic method __toString() for testing with view blocks.
- */
- class TestObjectWithToString
- {
- /**
- * Return string value.
- */
- public function __toString(): string
- {
- return "I'm ObjectWithToString";
- }
- }
|