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,28 +0,0 @@
1
-<?php
2
-
3
-namespace Illuminate\Support\Facades;
4
-
5
-/**
6
- * @method static bool exists(string $view)
7
- * @method static \Illuminate\Contracts\View\View file(string $path, array $data = [], array $mergeData = [])
8
- * @method static \Illuminate\Contracts\View\View make(string $view, array $data = [], array $mergeData = [])
9
- * @method static mixed share(array|string $key, $value = null)
10
- * @method static array composer(array|string $views, \Closure|string $callback)
11
- * @method static array creator(array|string $views, \Closure|string $callback)
12
- * @method static \Illuminate\Contracts\View\Factory addNamespace(string $namespace, string|array $hints)
13
- * @method static \Illuminate\Contracts\View\Factory replaceNamespace(string $namespace, string|array $hints)
14
- *
15
- * @see \Illuminate\View\Factory
16
- */
17
-class View extends Facade
18
-{
19
-    /**
20
-     * Get the registered name of the component.
21
-     *
22
-     * @return string
23
-     */
24
-    protected static function getFacadeAccessor()
25
-    {
26
-        return 'view';
27
-    }
28
-}
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,28 @@
1
+<?php
2
+
3
+namespace Illuminate\Support\Facades;
4
+
5
+/**
6
+ * @method static bool exists(string $view)
7
+ * @method static \Illuminate\Contracts\View\View file(string $path, array $data = [], array $mergeData = [])
8
+ * @method static \Illuminate\Contracts\View\View make(string $view, array $data = [], array $mergeData = [])
9
+ * @method static mixed share(array|string $key, $value = null)
10
+ * @method static array composer(array|string $views, \Closure|string $callback)
11
+ * @method static array creator(array|string $views, \Closure|string $callback)
12
+ * @method static \Illuminate\Contracts\View\Factory addNamespace(string $namespace, string|array $hints)
13
+ * @method static \Illuminate\Contracts\View\Factory replaceNamespace(string $namespace, string|array $hints)
14
+ *
15
+ * @see \Illuminate\View\Factory
16
+ */
17
+class View extends Facade
18
+{
19
+    /**
20
+     * Get the registered name of the component.
21
+     *
22
+     * @return string
23
+     */
24
+    protected static function getFacadeAccessor()
25
+    {
26
+        return 'view';
27
+    }
28
+}