NullSolutionsRepository.php 386 B

12345678910111213141516171819202122
  1. <?php
  2. declare(strict_types=1);
  3. namespace NunoMaduro\Collision\SolutionsRepositories;
  4. use NunoMaduro\Collision\Contracts\SolutionsRepository;
  5. use Throwable;
  6. /**
  7. * @internal
  8. */
  9. final class NullSolutionsRepository implements SolutionsRepository
  10. {
  11. /**
  12. * {@inheritdoc}
  13. */
  14. public function getFromThrowable(Throwable $throwable): array
  15. {
  16. return [];
  17. }
  18. }