bootstrap.php 197 B

12345678910111213
  1. <?php
  2. namespace RingCentral\Tests\Psr7;
  3. error_reporting(E_ALL);
  4. require __DIR__ . '/../vendor/autoload.php';
  5. class HasToString
  6. {
  7. public function __toString() {
  8. return 'foo';
  9. }
  10. }