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,63 +0,0 @@
1
-<?php
2
-
3
-namespace Illuminate\Support;
4
-
5
-/**
6
- * @mixin \Illuminate\Support\Collection
7
- */
8
-class HigherOrderCollectionProxy
9
-{
10
-    /**
11
-     * The collection being operated on.
12
-     *
13
-     * @var \Illuminate\Support\Collection
14
-     */
15
-    protected $collection;
16
-
17
-    /**
18
-     * The method being proxied.
19
-     *
20
-     * @var string
21
-     */
22
-    protected $method;
23
-
24
-    /**
25
-     * Create a new proxy instance.
26
-     *
27
-     * @param  \Illuminate\Support\Collection  $collection
28
-     * @param  string  $method
29
-     * @return void
30
-     */
31
-    public function __construct(Collection $collection, $method)
32
-    {
33
-        $this->method = $method;
34
-        $this->collection = $collection;
35
-    }
36
-
37
-    /**
38
-     * Proxy accessing an attribute onto the collection items.
39
-     *
40
-     * @param  string  $key
41
-     * @return mixed
42
-     */
43
-    public function __get($key)
44
-    {
45
-        return $this->collection->{$this->method}(function ($value) use ($key) {
46
-            return is_array($value) ? $value[$key] : $value->{$key};
47
-        });
48
-    }
49
-
50
-    /**
51
-     * Proxy a method call onto the collection items.
52
-     *
53
-     * @param  string  $method
54
-     * @param  array  $parameters
55
-     * @return mixed
56
-     */
57
-    public function __call($method, $parameters)
58
-    {
59
-        return $this->collection->{$this->method}(function ($value) use ($method, $parameters) {
60
-            return $value->{$method}(...$parameters);
61
-        });
62
-    }
63
-}
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,63 @@
1
+<?php
2
+
3
+namespace Illuminate\Support;
4
+
5
+/**
6
+ * @mixin \Illuminate\Support\Collection
7
+ */
8
+class HigherOrderCollectionProxy
9
+{
10
+    /**
11
+     * The collection being operated on.
12
+     *
13
+     * @var \Illuminate\Support\Collection
14
+     */
15
+    protected $collection;
16
+
17
+    /**
18
+     * The method being proxied.
19
+     *
20
+     * @var string
21
+     */
22
+    protected $method;
23
+
24
+    /**
25
+     * Create a new proxy instance.
26
+     *
27
+     * @param  \Illuminate\Support\Collection  $collection
28
+     * @param  string  $method
29
+     * @return void
30
+     */
31
+    public function __construct(Collection $collection, $method)
32
+    {
33
+        $this->method = $method;
34
+        $this->collection = $collection;
35
+    }
36
+
37
+    /**
38
+     * Proxy accessing an attribute onto the collection items.
39
+     *
40
+     * @param  string  $key
41
+     * @return mixed
42
+     */
43
+    public function __get($key)
44
+    {
45
+        return $this->collection->{$this->method}(function ($value) use ($key) {
46
+            return is_array($value) ? $value[$key] : $value->{$key};
47
+        });
48
+    }
49
+
50
+    /**
51
+     * Proxy a method call onto the collection items.
52
+     *
53
+     * @param  string  $method
54
+     * @param  array  $parameters
55
+     * @return mixed
56
+     */
57
+    public function __call($method, $parameters)
58
+    {
59
+        return $this->collection->{$this->method}(function ($value) use ($method, $parameters) {
60
+            return $value->{$method}(...$parameters);
61
+        });
62
+    }
63
+}