12 lines
215 B
PHP
12 lines
215 B
PHP
<?php
|
|
|
|
namespace Illuminate\Contracts\Container;
|
|
|
|
use Exception;
|
|
use Psr\Container\ContainerExceptionInterface;
|
|
|
|
class CircularDependencyException extends Exception implements ContainerExceptionInterface
|
|
{
|
|
//
|
|
}
|