Thing2.php 214 B

1234567891011121314
  1. <?php
  2. declare(strict_types=1);
  3. namespace GuzzleHttp\Promise\Tests;
  4. class Thing2 implements \JsonSerializable
  5. {
  6. #[\ReturnTypeWillChange]
  7. public function jsonSerialize()
  8. {
  9. return '{}';
  10. }
  11. }