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,43 +0,0 @@
1
-<?php
2
-
3
-namespace Illuminate\Support\Facades;
4
-
5
-/**
6
- * @method static string getName()
7
- * @method static string getId()
8
- * @method static void setId(string $id)
9
- * @method static bool start()
10
- * @method static bool save()
11
- * @method static array all()
12
- * @method static bool exists(string|array $key)
13
- * @method static bool has(string|array $key)
14
- * @method static mixed get(string $key, $default = null)
15
- * @method static mixed pull(string $key, $default = null)
16
- * @method static void put(string|array $key, $value = null)
17
- * @method static string token()
18
- * @method static mixed remove(string $key)
19
- * @method static void forget(string|array $keys)
20
- * @method static void flush()
21
- * @method static bool migrate(bool $destroy = false)
22
- * @method static bool isStarted()
23
- * @method static string|null previousUrl()
24
- * @method static void setPreviousUrl(string $url)
25
- * @method static \SessionHandlerInterface getHandler()
26
- * @method static bool handlerNeedsRequest()
27
- * @method static void setRequestOnHandler(\Illuminate\Http\Request $request)
28
- *
29
- * @see \Illuminate\Session\SessionManager
30
- * @see \Illuminate\Session\Store
31
- */
32
-class Session extends Facade
33
-{
34
-    /**
35
-     * Get the registered name of the component.
36
-     *
37
-     * @return string
38
-     */
39
-    protected static function getFacadeAccessor()
40
-    {
41
-        return 'session';
42
-    }
43
-}
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,43 @@
1
+<?php
2
+
3
+namespace Illuminate\Support\Facades;
4
+
5
+/**
6
+ * @method static string getName()
7
+ * @method static string getId()
8
+ * @method static void setId(string $id)
9
+ * @method static bool start()
10
+ * @method static bool save()
11
+ * @method static array all()
12
+ * @method static bool exists(string|array $key)
13
+ * @method static bool has(string|array $key)
14
+ * @method static mixed get(string $key, $default = null)
15
+ * @method static mixed pull(string $key, $default = null)
16
+ * @method static void put(string|array $key, $value = null)
17
+ * @method static string token()
18
+ * @method static mixed remove(string $key)
19
+ * @method static void forget(string|array $keys)
20
+ * @method static void flush()
21
+ * @method static bool migrate(bool $destroy = false)
22
+ * @method static bool isStarted()
23
+ * @method static string|null previousUrl()
24
+ * @method static void setPreviousUrl(string $url)
25
+ * @method static \SessionHandlerInterface getHandler()
26
+ * @method static bool handlerNeedsRequest()
27
+ * @method static void setRequestOnHandler(\Illuminate\Http\Request $request)
28
+ *
29
+ * @see \Illuminate\Session\SessionManager
30
+ * @see \Illuminate\Session\Store
31
+ */
32
+class Session extends Facade
33
+{
34
+    /**
35
+     * Get the registered name of the component.
36
+     *
37
+     * @return string
38
+     */
39
+    protected static function getFacadeAccessor()
40
+    {
41
+        return 'session';
42
+    }
43
+}