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 void compile(string|null $path = null)
7
- * @method static string getPath()
8
- * @method static void setPath(string $path)
9
- * @method static string compileString(string $value)
10
- * @method static string stripParentheses(string $expression)
11
- * @method static void extend(callable $compiler)
12
- * @method static array getExtensions()
13
- * @method static void if(string $name, callable $callback)
14
- * @method static bool check(string $name, array ...$parameters)
15
- * @method static void component(string $path, string|null $alias = null)
16
- * @method static void include(string $path, string|null $alias = null)
17
- * @method static void directive(string $name, callable $handler)
18
- * @method static array getCustomDirectives()
19
- * @method static void setEchoFormat(string $format)
20
- * @method static void withDoubleEncoding()
21
- * @method static void withoutDoubleEncoding()
22
- *
23
- * @see \Illuminate\View\Compilers\BladeCompiler
24
- */
25
-class Blade 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 'blade.compiler';
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 void compile(string|null $path = null)
7
+ * @method static string getPath()
8
+ * @method static void setPath(string $path)
9
+ * @method static string compileString(string $value)
10
+ * @method static string stripParentheses(string $expression)
11
+ * @method static void extend(callable $compiler)
12
+ * @method static array getExtensions()
13
+ * @method static void if(string $name, callable $callback)
14
+ * @method static bool check(string $name, array ...$parameters)
15
+ * @method static void component(string $path, string|null $alias = null)
16
+ * @method static void include(string $path, string|null $alias = null)
17
+ * @method static void directive(string $name, callable $handler)
18
+ * @method static array getCustomDirectives()
19
+ * @method static void setEchoFormat(string $format)
20
+ * @method static void withDoubleEncoding()
21
+ * @method static void withoutDoubleEncoding()
22
+ *
23
+ * @see \Illuminate\View\Compilers\BladeCompiler
24
+ */
25
+class Blade 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 'blade.compiler';
35
+    }
36
+}