diff options
author | polo <ordipolo@gmx.fr> | 2024-08-13 23:45:21 +0200 |
---|---|---|
committer | polo <ordipolo@gmx.fr> | 2024-08-13 23:45:21 +0200 |
commit | bf6655a534a6775d30cafa67bd801276bda1d98d (patch) | |
tree | c6381e3f6c81c33eab72508f410b165ba05f7e9c /vendor/psr/container/src | |
parent | 94d67a4b51f8e62e7d518cce26a526ae1ec48278 (diff) | |
download | AppliGestionPHP-bf6655a534a6775d30cafa67bd801276bda1d98d.zip |
VERSION 0.2 doctrine ORM et entités
Diffstat (limited to 'vendor/psr/container/src')
-rw-r--r-- | vendor/psr/container/src/ContainerExceptionInterface.php | 12 | ||||
-rw-r--r-- | vendor/psr/container/src/ContainerInterface.php | 36 | ||||
-rw-r--r-- | vendor/psr/container/src/NotFoundExceptionInterface.php | 10 |
3 files changed, 58 insertions, 0 deletions
diff --git a/vendor/psr/container/src/ContainerExceptionInterface.php b/vendor/psr/container/src/ContainerExceptionInterface.php new file mode 100644 index 0000000..0f213f2 --- /dev/null +++ b/vendor/psr/container/src/ContainerExceptionInterface.php | |||
@@ -0,0 +1,12 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Psr\Container; | ||
4 | |||
5 | use Throwable; | ||
6 | |||
7 | /** | ||
8 | * Base interface representing a generic exception in a container. | ||
9 | */ | ||
10 | interface ContainerExceptionInterface extends Throwable | ||
11 | { | ||
12 | } | ||
diff --git a/vendor/psr/container/src/ContainerInterface.php b/vendor/psr/container/src/ContainerInterface.php new file mode 100644 index 0000000..b2cad40 --- /dev/null +++ b/vendor/psr/container/src/ContainerInterface.php | |||
@@ -0,0 +1,36 @@ | |||
1 | <?php | ||
2 | |||
3 | declare(strict_types=1); | ||
4 | |||
5 | namespace Psr\Container; | ||
6 | |||
7 | /** | ||
8 | * Describes the interface of a container that exposes methods to read its entries. | ||
9 | */ | ||
10 | interface ContainerInterface | ||
11 | { | ||
12 | /** | ||
13 | * Finds an entry of the container by its identifier and returns it. | ||
14 | * | ||
15 | * @param string $id Identifier of the entry to look for. | ||
16 | * | ||
17 | * @throws NotFoundExceptionInterface No entry was found for **this** identifier. | ||
18 | * @throws ContainerExceptionInterface Error while retrieving the entry. | ||
19 | * | ||
20 | * @return mixed Entry. | ||
21 | */ | ||
22 | public function get(string $id); | ||
23 | |||
24 | /** | ||
25 | * Returns true if the container can return an entry for the given identifier. | ||
26 | * Returns false otherwise. | ||
27 | * | ||
28 | * `has($id)` returning true does not mean that `get($id)` will not throw an exception. | ||
29 | * It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`. | ||
30 | * | ||
31 | * @param string $id Identifier of the entry to look for. | ||
32 | * | ||
33 | * @return bool | ||
34 | */ | ||
35 | public function has(string $id): bool; | ||
36 | } | ||
diff --git a/vendor/psr/container/src/NotFoundExceptionInterface.php b/vendor/psr/container/src/NotFoundExceptionInterface.php new file mode 100644 index 0000000..650bf46 --- /dev/null +++ b/vendor/psr/container/src/NotFoundExceptionInterface.php | |||
@@ -0,0 +1,10 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Psr\Container; | ||
4 | |||
5 | /** | ||
6 | * No entry was found in the container. | ||
7 | */ | ||
8 | interface NotFoundExceptionInterface extends ContainerExceptionInterface | ||
9 | { | ||
10 | } | ||