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
-namespace Illuminate\Contracts\Http;
4
-
5
-interface Kernel
6
-{
7
-    /**
8
-     * Bootstrap the application for HTTP requests.
9
-     *
10
-     * @return void
11
-     */
12
-    public function bootstrap();
13
-
14
-    /**
15
-     * Handle an incoming HTTP request.
16
-     *
17
-     * @param  \Symfony\Component\HttpFoundation\Request  $request
18
-     * @return \Symfony\Component\HttpFoundation\Response
19
-     */
20
-    public function handle($request);
21
-
22
-    /**
23
-     * Perform any final actions for the request lifecycle.
24
-     *
25
-     * @param  \Symfony\Component\HttpFoundation\Request  $request
26
-     * @param  \Symfony\Component\HttpFoundation\Response  $response
27
-     * @return void
28
-     */
29
-    public function terminate($request, $response);
30
-
31
-    /**
32
-     * Get the Laravel application instance.
33
-     *
34
-     * @return \Illuminate\Contracts\Foundation\Application
35
-     */
36
-    public function getApplication();
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
+namespace Illuminate\Contracts\Http;
4
+
5
+interface Kernel
6
+{
7
+    /**
8
+     * Bootstrap the application for HTTP requests.
9
+     *
10
+     * @return void
11
+     */
12
+    public function bootstrap();
13
+
14
+    /**
15
+     * Handle an incoming HTTP request.
16
+     *
17
+     * @param  \Symfony\Component\HttpFoundation\Request  $request
18
+     * @return \Symfony\Component\HttpFoundation\Response
19
+     */
20
+    public function handle($request);
21
+
22
+    /**
23
+     * Perform any final actions for the request lifecycle.
24
+     *
25
+     * @param  \Symfony\Component\HttpFoundation\Request  $request
26
+     * @param  \Symfony\Component\HttpFoundation\Response  $response
27
+     * @return void
28
+     */
29
+    public function terminate($request, $response);
30
+
31
+    /**
32
+     * Get the Laravel application instance.
33
+     *
34
+     * @return \Illuminate\Contracts\Foundation\Application
35
+     */
36
+    public function getApplication();
37
+}