1 | <?php |
||
2 | |||
3 | /** |
||
4 | * For the full copyright and license information, please view |
||
5 | * the LICENSE file that was distributed with this source code. |
||
6 | */ |
||
7 | |||
8 | declare(strict_types=1); |
||
9 | |||
10 | namespace loophp\combinator; |
||
11 | |||
12 | use Closure; |
||
13 | use loophp\combinator\Combinator\A; |
||
14 | use loophp\combinator\Combinator\B; |
||
15 | use loophp\combinator\Combinator\Blackbird; |
||
16 | use loophp\combinator\Combinator\C; |
||
17 | use loophp\combinator\Combinator\D; |
||
18 | use loophp\combinator\Combinator\E; |
||
19 | use loophp\combinator\Combinator\F; |
||
20 | use loophp\combinator\Combinator\G; |
||
21 | use loophp\combinator\Combinator\H; |
||
22 | use loophp\combinator\Combinator\I; |
||
23 | use loophp\combinator\Combinator\J; |
||
24 | use loophp\combinator\Combinator\K; |
||
25 | use loophp\combinator\Combinator\Ki; |
||
26 | use loophp\combinator\Combinator\L; |
||
27 | use loophp\combinator\Combinator\M; |
||
28 | use loophp\combinator\Combinator\O; |
||
29 | use loophp\combinator\Combinator\Omega; |
||
30 | use loophp\combinator\Combinator\Phoenix; |
||
31 | use loophp\combinator\Combinator\Psi; |
||
32 | use loophp\combinator\Combinator\Q; |
||
33 | use loophp\combinator\Combinator\R; |
||
34 | use loophp\combinator\Combinator\S; |
||
35 | use loophp\combinator\Combinator\S2; |
||
36 | use loophp\combinator\Combinator\S_; |
||
37 | use loophp\combinator\Combinator\T; |
||
38 | use loophp\combinator\Combinator\U; |
||
39 | use loophp\combinator\Combinator\V; |
||
40 | use loophp\combinator\Combinator\W; |
||
41 | use loophp\combinator\Combinator\Y; |
||
42 | use loophp\combinator\Combinator\Z; |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
43 | |||
44 | /** |
||
45 | 1 | * Class Combinators. |
|
46 | * |
||
47 | 1 | * phpcs:disable PSR1.Methods.CamelCapsMethodName.NotCamelCaps |
|
48 | */ |
||
49 | final class Combinators |
||
50 | 1 | { |
|
51 | public static function A(): Closure |
||
52 | 1 | { |
|
53 | return A::of(); |
||
54 | } |
||
55 | 1 | ||
56 | public static function B(): Closure |
||
57 | 1 | { |
|
58 | return B::of(); |
||
59 | } |
||
60 | 1 | ||
61 | public static function Blackbird(): Closure |
||
62 | 1 | { |
|
63 | return Blackbird::of(); |
||
64 | } |
||
65 | 1 | ||
66 | public static function C(): Closure |
||
67 | 1 | { |
|
68 | return C::of(); |
||
69 | } |
||
70 | 1 | ||
71 | public static function D(): Closure |
||
72 | 1 | { |
|
73 | return D::of(); |
||
74 | } |
||
75 | 1 | ||
76 | public static function E(): Closure |
||
77 | 1 | { |
|
78 | return E::of(); |
||
79 | } |
||
80 | 1 | ||
81 | public static function F(): Closure |
||
82 | 1 | { |
|
83 | return F::of(); |
||
84 | } |
||
85 | 8 | ||
86 | public static function G(): Closure |
||
87 | 8 | { |
|
88 | return G::of(); |
||
89 | } |
||
90 | 1 | ||
91 | public static function H(): Closure |
||
92 | 1 | { |
|
93 | return H::of(); |
||
94 | } |
||
95 | 17 | ||
96 | public static function I(): Closure |
||
97 | 17 | { |
|
98 | return I::of(); |
||
99 | } |
||
100 | 1 | ||
101 | public static function J(): Closure |
||
102 | 1 | { |
|
103 | return J::of(); |
||
104 | } |
||
105 | 1 | ||
106 | public static function K(): Closure |
||
107 | 1 | { |
|
108 | return K::of(); |
||
109 | } |
||
110 | 1 | ||
111 | public static function Ki(): Closure |
||
112 | 1 | { |
|
113 | return Ki::of(); |
||
114 | } |
||
115 | 1 | ||
116 | public static function L(): Closure |
||
117 | 1 | { |
|
118 | return L::of(); |
||
119 | } |
||
120 | 1 | ||
121 | public static function M(): Closure |
||
122 | 1 | { |
|
123 | return M::of(); |
||
124 | } |
||
125 | 1 | ||
126 | public static function O(): Closure |
||
127 | 1 | { |
|
128 | return O::of(); |
||
129 | } |
||
130 | 1 | ||
131 | public static function Omega(): Closure |
||
132 | 1 | { |
|
133 | return Omega::of(); |
||
134 | } |
||
135 | 1 | ||
136 | public static function Phoenix(): Closure |
||
137 | 1 | { |
|
138 | return Phoenix::of(); |
||
139 | } |
||
140 | 1 | ||
141 | public static function Psi(): Closure |
||
142 | 1 | { |
|
143 | return Psi::of(); |
||
144 | } |
||
145 | 18 | ||
146 | public static function Q(): Closure |
||
147 | 18 | { |
|
148 | return Q::of(); |
||
149 | } |
||
150 | 1 | ||
151 | public static function R(): Closure |
||
152 | 1 | { |
|
153 | return R::of(); |
||
154 | } |
||
155 | 1 | ||
156 | public static function S(): Closure |
||
157 | 1 | { |
|
158 | return S::of(); |
||
159 | } |
||
160 | 1 | ||
161 | public static function S2(): Closure |
||
162 | 1 | { |
|
163 | return S2::of(); |
||
164 | } |
||
165 | 1 | ||
166 | public static function S_(): Closure |
||
167 | 1 | { |
|
168 | return S_::of(); |
||
169 | } |
||
170 | 1 | ||
171 | public static function T(): Closure |
||
172 | 1 | { |
|
173 | return T::of(); |
||
174 | } |
||
175 | 1 | ||
176 | public static function U(): Closure |
||
177 | 1 | { |
|
178 | return U::of(); |
||
179 | } |
||
180 | 1 | ||
181 | public static function V(): Closure |
||
182 | 1 | { |
|
183 | return V::of(); |
||
184 | } |
||
185 | 1 | ||
186 | public static function W(): Closure |
||
187 | 1 | { |
|
188 | return W::of(); |
||
189 | } |
||
190 | |||
191 | public static function Y(): Closure |
||
192 | { |
||
193 | return Y::of(); |
||
194 | } |
||
195 | |||
196 | public static function Z(): Closure |
||
197 | { |
||
198 | return Z::of(); |
||
199 | } |
||
200 | } |
||
201 |