HasToString.php 164 B

12345678910111213
  1. <?php
  2. declare(strict_types=1);
  3. namespace GuzzleHttp\Tests\Psr7;
  4. class HasToString
  5. {
  6. public function __toString(): string
  7. {
  8. return 'foo';
  9. }
  10. }