master

laravel/framework

Last updated at: 29/12/2023 09:25

LoggedExceptionCollection.php

TLDR

This file defines the LoggedExceptionCollection class, which extends the Collection class from the Illuminate\Support package.

Classes

LoggedExceptionCollection

This class extends the Collection class from the Illuminate\Support package. It does not include any additional methods or properties.

<?php

namespace Illuminate\Testing;

use Illuminate\Support\Collection;

class LoggedExceptionCollection extends Collection
{
    //
}