| 12345678910111213141516171819202122 | <?phpdeclare(strict_types=1);namespace NunoMaduro\Collision\SolutionsRepositories;use NunoMaduro\Collision\Contracts\SolutionsRepository;use Throwable;/** * @internal */final class NullSolutionsRepository implements SolutionsRepository{    /**     * {@inheritdoc}     */    public function getFromThrowable(Throwable $throwable): array    {        return [];    }}
 |