ContainerExceptionInterface.php
2 years ago
ContainerInterface.php
2 years ago
NotFoundExceptionInterface.php
2 years ago
NotFoundExceptionInterface.php
17 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @license MIT |
| 4 | * |
| 5 | * Modified by Scott Kingsley Clark on 21-February-2024 using Strauss. |
| 6 | * @see https://github.com/BrianHenryIE/strauss |
| 7 | */ |
| 8 | |
| 9 | namespace Pods\Prefixed\Psr\Container; |
| 10 | |
| 11 | /** |
| 12 | * No entry was found in the container. |
| 13 | */ |
| 14 | interface NotFoundExceptionInterface extends ContainerExceptionInterface |
| 15 | { |
| 16 | } |
| 17 |