MDL-80072 core: Add PSR-11 interfaces

This commit is contained in:
Andrew Nicols
2024-02-09 15:03:57 +08:00
parent 328b48ebc5
commit 12dcde3fae
10 changed files with 141 additions and 0 deletions
@@ -0,0 +1,12 @@
<?php
namespace Psr\Container;
use Throwable;
/**
* Base interface representing a generic exception in a container.
*/
interface ContainerExceptionInterface extends Throwable
{
}