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,33 +0,0 @@
1
-<?php
2
-
3
-namespace Illuminate\Support\Facades;
4
-
5
-/**
6
- * @method static string current()
7
- * @method static string full()
8
- * @method static string previous($fallback = false)
9
- * @method static string to(string $path, $extra = [], bool $secure = null)
10
- * @method static string secure(string $path, array $parameters = [])
11
- * @method static string asset(string $path, bool $secure = null)
12
- * @method static string route(string $name, $parameters = [], bool $absolute = true)
13
- * @method static string action(string $action, $parameters = [], bool $absolute = true)
14
- * @method static \Illuminate\Contracts\Routing\UrlGenerator setRootControllerNamespace(string $rootNamespace)
15
- * @method static string signedRoute(string $name, array $parameters = [], \DateTimeInterface|\DateInterval|int $expiration = null, bool $absolute = true)
16
- * @method static string temporarySignedRoute(string $name, \DateTimeInterface|\DateInterval|int $expiration, array $parameters = [], bool $absolute = true)
17
- * @method static string hasValidSignature(\Illuminate\Http\Request $request, bool $absolute = true)
18
- * @method static void defaults(array $defaults)
19
- *
20
- * @see \Illuminate\Routing\UrlGenerator
21
- */
22
-class URL extends Facade
23
-{
24
-    /**
25
-     * Get the registered name of the component.
26
-     *
27
-     * @return string
28
-     */
29
-    protected static function getFacadeAccessor()
30
-    {
31
-        return 'url';
32
-    }
33
-}
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,33 @@
1
+<?php
2
+
3
+namespace Illuminate\Support\Facades;
4
+
5
+/**
6
+ * @method static string current()
7
+ * @method static string full()
8
+ * @method static string previous($fallback = false)
9
+ * @method static string to(string $path, $extra = [], bool $secure = null)
10
+ * @method static string secure(string $path, array $parameters = [])
11
+ * @method static string asset(string $path, bool $secure = null)
12
+ * @method static string route(string $name, $parameters = [], bool $absolute = true)
13
+ * @method static string action(string $action, $parameters = [], bool $absolute = true)
14
+ * @method static \Illuminate\Contracts\Routing\UrlGenerator setRootControllerNamespace(string $rootNamespace)
15
+ * @method static string signedRoute(string $name, array $parameters = [], \DateTimeInterface|\DateInterval|int $expiration = null, bool $absolute = true)
16
+ * @method static string temporarySignedRoute(string $name, \DateTimeInterface|\DateInterval|int $expiration, array $parameters = [], bool $absolute = true)
17
+ * @method static string hasValidSignature(\Illuminate\Http\Request $request, bool $absolute = true)
18
+ * @method static void defaults(array $defaults)
19
+ *
20
+ * @see \Illuminate\Routing\UrlGenerator
21
+ */
22
+class URL extends Facade
23
+{
24
+    /**
25
+     * Get the registered name of the component.
26
+     *
27
+     * @return string
28
+     */
29
+    protected static function getFacadeAccessor()
30
+    {
31
+        return 'url';
32
+    }
33
+}