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,36 +0,0 @@
1
-<?php
2
-
3
-namespace Illuminate\Support\Facades;
4
-
5
-/**
6
- * @method static \Illuminate\Contracts\Cache\Repository  store(string|null $name = null)
7
- * @method static bool has(string $key)
8
- * @method static bool missing(string $key)
9
- * @method static mixed get(string $key, mixed $default = null)
10
- * @method static mixed pull(string $key, mixed $default = null)
11
- * @method static bool put(string $key, $value, \DateTimeInterface|\DateInterval|int $ttl)
12
- * @method static bool add(string $key, $value, \DateTimeInterface|\DateInterval|int $ttl)
13
- * @method static int|bool increment(string $key, $value = 1)
14
- * @method static int|bool decrement(string $key, $value = 1)
15
- * @method static bool forever(string $key, $value)
16
- * @method static mixed remember(string $key, \DateTimeInterface|\DateInterval|int $ttl, \Closure $callback)
17
- * @method static mixed sear(string $key, \Closure $callback)
18
- * @method static mixed rememberForever(string $key, \Closure $callback)
19
- * @method static bool forget(string $key)
20
- * @method static \Illuminate\Contracts\Cache\Store getStore()
21
- *
22
- * @see \Illuminate\Cache\CacheManager
23
- * @see \Illuminate\Cache\Repository
24
- */
25
-class Cache extends Facade
26
-{
27
-    /**
28
-     * Get the registered name of the component.
29
-     *
30
-     * @return string
31
-     */
32
-    protected static function getFacadeAccessor()
33
-    {
34
-        return 'cache';
35
-    }
36
-}
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,36 @@
1
+<?php
2
+
3
+namespace Illuminate\Support\Facades;
4
+
5
+/**
6
+ * @method static \Illuminate\Contracts\Cache\Repository  store(string|null $name = null)
7
+ * @method static bool has(string $key)
8
+ * @method static bool missing(string $key)
9
+ * @method static mixed get(string $key, mixed $default = null)
10
+ * @method static mixed pull(string $key, mixed $default = null)
11
+ * @method static bool put(string $key, $value, \DateTimeInterface|\DateInterval|int $ttl)
12
+ * @method static bool add(string $key, $value, \DateTimeInterface|\DateInterval|int $ttl)
13
+ * @method static int|bool increment(string $key, $value = 1)
14
+ * @method static int|bool decrement(string $key, $value = 1)
15
+ * @method static bool forever(string $key, $value)
16
+ * @method static mixed remember(string $key, \DateTimeInterface|\DateInterval|int $ttl, \Closure $callback)
17
+ * @method static mixed sear(string $key, \Closure $callback)
18
+ * @method static mixed rememberForever(string $key, \Closure $callback)
19
+ * @method static bool forget(string $key)
20
+ * @method static \Illuminate\Contracts\Cache\Store getStore()
21
+ *
22
+ * @see \Illuminate\Cache\CacheManager
23
+ * @see \Illuminate\Cache\Repository
24
+ */
25
+class Cache extends Facade
26
+{
27
+    /**
28
+     * Get the registered name of the component.
29
+     *
30
+     * @return string
31
+     */
32
+    protected static function getFacadeAccessor()
33
+    {
34
+        return 'cache';
35
+    }
36
+}