Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

Application modulaire fonctionnelle !

Emmanuel ROY authored on 12/08/2019 15:10:25
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,37 +0,0 @@
1
-<?php
2
-/**
3
- * @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
4
- */
5
-
6
-namespace Psr\Container;
7
-
8
-/**
9
- * Describes the interface of a container that exposes methods to read its entries.
10
- */
11
-interface ContainerInterface
12
-{
13
-    /**
14
-     * Finds an entry of the container by its identifier and returns it.
15
-     *
16
-     * @param string $id Identifier of the entry to look for.
17
-     *
18
-     * @throws NotFoundExceptionInterface  No entry was found for **this** identifier.
19
-     * @throws ContainerExceptionInterface Error while retrieving the entry.
20
-     *
21
-     * @return mixed Entry.
22
-     */
23
-    public function get($id);
24
-
25
-    /**
26
-     * Returns true if the container can return an entry for the given identifier.
27
-     * Returns false otherwise.
28
-     *
29
-     * `has($id)` returning true does not mean that `get($id)` will not throw an exception.
30
-     * It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`.
31
-     *
32
-     * @param string $id Identifier of the entry to look for.
33
-     *
34
-     * @return bool
35
-     */
36
-    public function has($id);
37
-}
Browse code

initial commit

Emmanuel ROY authored on 09/08/2019 08:39:02
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,37 @@
1
+<?php
2
+/**
3
+ * @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
4
+ */
5
+
6
+namespace Psr\Container;
7
+
8
+/**
9
+ * Describes the interface of a container that exposes methods to read its entries.
10
+ */
11
+interface ContainerInterface
12
+{
13
+    /**
14
+     * Finds an entry of the container by its identifier and returns it.
15
+     *
16
+     * @param string $id Identifier of the entry to look for.
17
+     *
18
+     * @throws NotFoundExceptionInterface  No entry was found for **this** identifier.
19
+     * @throws ContainerExceptionInterface Error while retrieving the entry.
20
+     *
21
+     * @return mixed Entry.
22
+     */
23
+    public function get($id);
24
+
25
+    /**
26
+     * Returns true if the container can return an entry for the given identifier.
27
+     * Returns false otherwise.
28
+     *
29
+     * `has($id)` returning true does not mean that `get($id)` will not throw an exception.
30
+     * It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`.
31
+     *
32
+     * @param string $id Identifier of the entry to look for.
33
+     *
34
+     * @return bool
35
+     */
36
+    public function has($id);
37
+}