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,49 +0,0 @@
1
-<?php
2
-
3
-namespace Illuminate\View\Compilers\Concerns;
4
-
5
-trait CompilesHelpers
6
-{
7
-    /**
8
-     * Compile the CSRF statements into valid PHP.
9
-     *
10
-     * @return string
11
-     */
12
-    protected function compileCsrf()
13
-    {
14
-        return '<?php echo csrf_field(); ?>';
15
-    }
16
-
17
-    /**
18
-     * Compile the "dd" statements into valid PHP.
19
-     *
20
-     * @param  string  $arguments
21
-     * @return string
22
-     */
23
-    protected function compileDd($arguments)
24
-    {
25
-        return "<?php dd{$arguments}; ?>";
26
-    }
27
-
28
-    /**
29
-     * Compile the "dump" statements into valid PHP.
30
-     *
31
-     * @param  string  $arguments
32
-     * @return string
33
-     */
34
-    protected function compileDump($arguments)
35
-    {
36
-        return "<?php dump{$arguments}; ?>";
37
-    }
38
-
39
-    /**
40
-     * Compile the method statements into valid PHP.
41
-     *
42
-     * @param  string  $method
43
-     * @return string
44
-     */
45
-    protected function compileMethod($method)
46
-    {
47
-        return "<?php echo method_field{$method}; ?>";
48
-    }
49
-}
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,49 @@
1
+<?php
2
+
3
+namespace Illuminate\View\Compilers\Concerns;
4
+
5
+trait CompilesHelpers
6
+{
7
+    /**
8
+     * Compile the CSRF statements into valid PHP.
9
+     *
10
+     * @return string
11
+     */
12
+    protected function compileCsrf()
13
+    {
14
+        return '<?php echo csrf_field(); ?>';
15
+    }
16
+
17
+    /**
18
+     * Compile the "dd" statements into valid PHP.
19
+     *
20
+     * @param  string  $arguments
21
+     * @return string
22
+     */
23
+    protected function compileDd($arguments)
24
+    {
25
+        return "<?php dd{$arguments}; ?>";
26
+    }
27
+
28
+    /**
29
+     * Compile the "dump" statements into valid PHP.
30
+     *
31
+     * @param  string  $arguments
32
+     * @return string
33
+     */
34
+    protected function compileDump($arguments)
35
+    {
36
+        return "<?php dump{$arguments}; ?>";
37
+    }
38
+
39
+    /**
40
+     * Compile the method statements into valid PHP.
41
+     *
42
+     * @param  string  $method
43
+     * @return string
44
+     */
45
+    protected function compileMethod($method)
46
+    {
47
+        return "<?php echo method_field{$method}; ?>";
48
+    }
49
+}