TestObjectWithoutToString.php 221 B

12345678910111213
  1. <?php
  2. declare(strict_types=1);
  3. namespace TestApp\View\Object;
  4. /**
  5. * TestObjectWithoutToString
  6. *
  7. * An object without the magic method __toString() for testing with view blocks.
  8. */
  9. class TestObjectWithoutToString
  10. {
  11. }