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,59 +0,0 @@
1
-<?php
2
-
3
-namespace Illuminate\View\Compilers\Concerns;
4
-
5
-trait CompilesStacks
6
-{
7
-    /**
8
-     * Compile the stack statements into the content.
9
-     *
10
-     * @param  string  $expression
11
-     * @return string
12
-     */
13
-    protected function compileStack($expression)
14
-    {
15
-        return "<?php echo \$__env->yieldPushContent{$expression}; ?>";
16
-    }
17
-
18
-    /**
19
-     * Compile the push statements into valid PHP.
20
-     *
21
-     * @param  string  $expression
22
-     * @return string
23
-     */
24
-    protected function compilePush($expression)
25
-    {
26
-        return "<?php \$__env->startPush{$expression}; ?>";
27
-    }
28
-
29
-    /**
30
-     * Compile the end-push statements into valid PHP.
31
-     *
32
-     * @return string
33
-     */
34
-    protected function compileEndpush()
35
-    {
36
-        return '<?php $__env->stopPush(); ?>';
37
-    }
38
-
39
-    /**
40
-     * Compile the prepend statements into valid PHP.
41
-     *
42
-     * @param  string  $expression
43
-     * @return string
44
-     */
45
-    protected function compilePrepend($expression)
46
-    {
47
-        return "<?php \$__env->startPrepend{$expression}; ?>";
48
-    }
49
-
50
-    /**
51
-     * Compile the end-prepend statements into valid PHP.
52
-     *
53
-     * @return string
54
-     */
55
-    protected function compileEndprepend()
56
-    {
57
-        return '<?php $__env->stopPrepend(); ?>';
58
-    }
59
-}
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,59 @@
1
+<?php
2
+
3
+namespace Illuminate\View\Compilers\Concerns;
4
+
5
+trait CompilesStacks
6
+{
7
+    /**
8
+     * Compile the stack statements into the content.
9
+     *
10
+     * @param  string  $expression
11
+     * @return string
12
+     */
13
+    protected function compileStack($expression)
14
+    {
15
+        return "<?php echo \$__env->yieldPushContent{$expression}; ?>";
16
+    }
17
+
18
+    /**
19
+     * Compile the push statements into valid PHP.
20
+     *
21
+     * @param  string  $expression
22
+     * @return string
23
+     */
24
+    protected function compilePush($expression)
25
+    {
26
+        return "<?php \$__env->startPush{$expression}; ?>";
27
+    }
28
+
29
+    /**
30
+     * Compile the end-push statements into valid PHP.
31
+     *
32
+     * @return string
33
+     */
34
+    protected function compileEndpush()
35
+    {
36
+        return '<?php $__env->stopPush(); ?>';
37
+    }
38
+
39
+    /**
40
+     * Compile the prepend statements into valid PHP.
41
+     *
42
+     * @param  string  $expression
43
+     * @return string
44
+     */
45
+    protected function compilePrepend($expression)
46
+    {
47
+        return "<?php \$__env->startPrepend{$expression}; ?>";
48
+    }
49
+
50
+    /**
51
+     * Compile the end-prepend statements into valid PHP.
52
+     *
53
+     * @return string
54
+     */
55
+    protected function compileEndprepend()
56
+    {
57
+        return '<?php $__env->stopPrepend(); ?>';
58
+    }
59
+}