@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | * @param string|Select $table |
80 | 80 | * @param string[] $columns |
81 | 81 | */ |
82 | - public function __construct (DB $db, $table, array $columns) { |
|
82 | + public function __construct(DB $db, $table, array $columns) { |
|
83 | 83 | parent::__construct($db); |
84 | 84 | if ($table instanceof Select) { |
85 | 85 | $table = $table->toSubquery(); |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | /** |
96 | 96 | * Gives the clone a new alias. |
97 | 97 | */ |
98 | - public function __clone () { |
|
98 | + public function __clone() { |
|
99 | 99 | $this->alias = uniqid('_') . "__{$this->table}"; |
100 | 100 | } |
101 | 101 | |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | * @param array $args |
104 | 104 | * @return Statement |
105 | 105 | */ |
106 | - public function __invoke (array $args = []): Statement { |
|
106 | + public function __invoke(array $args = []): Statement { |
|
107 | 107 | return $this->execute($args); |
108 | 108 | } |
109 | 109 | |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | * |
113 | 113 | * @return string |
114 | 114 | */ |
115 | - public function __toString (): string { |
|
115 | + public function __toString(): string { |
|
116 | 116 | return $this->alias; |
117 | 117 | } |
118 | 118 | |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | * @param array $args Execution arguments. |
123 | 123 | * @return int |
124 | 124 | */ |
125 | - public function count (array $args = []): int { |
|
125 | + public function count(array $args = []): int { |
|
126 | 126 | $clone = clone $this; |
127 | 127 | $clone->columns = ['COUNT(*)']; |
128 | 128 | return (int)$clone->execute($args)->fetchColumn(); |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | * @param array $args |
135 | 135 | * @return Statement |
136 | 136 | */ |
137 | - public function execute (array $args = []): Statement { |
|
137 | + public function execute(array $args = []): Statement { |
|
138 | 138 | if (!empty($args)) { |
139 | 139 | return $this->prepare()($args); |
140 | 140 | } |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | * @param array $args Execution arguments. |
150 | 150 | * @return array |
151 | 151 | */ |
152 | - public function fetchAll (array $args = []): array { |
|
152 | + public function fetchAll(array $args = []): array { |
|
153 | 153 | return $this->fetcher->__invoke($this->execute($args)); |
154 | 154 | } |
155 | 155 | |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | * |
161 | 161 | * @return ArrayIterator |
162 | 162 | */ |
163 | - public function getIterator () { |
|
163 | + public function getIterator() { |
|
164 | 164 | return new ArrayIterator($this->fetchAll()); |
165 | 165 | } |
166 | 166 | |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | * @param string $column |
171 | 171 | * @return $this |
172 | 172 | */ |
173 | - public function group (string $column) { |
|
173 | + public function group(string $column) { |
|
174 | 174 | $this->_group[] = $column; |
175 | 175 | return $this; |
176 | 176 | } |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | * @param string $condition |
182 | 182 | * @return $this |
183 | 183 | */ |
184 | - public function having (string $condition) { |
|
184 | + public function having(string $condition) { |
|
185 | 185 | $this->_having[] = $condition; |
186 | 186 | return $this; |
187 | 187 | } |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | * @param string $type |
195 | 195 | * @return $this |
196 | 196 | */ |
197 | - public function join ($table, string $condition, string $type = 'INNER') { |
|
197 | + public function join($table, string $condition, string $type = 'INNER') { |
|
198 | 198 | if ($table instanceof Select) { |
199 | 199 | $table = $table->toSubquery(); |
200 | 200 | } |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | * @param int $offset |
210 | 210 | * @return $this |
211 | 211 | */ |
212 | - public function limit (int $limit, int $offset = 0) { |
|
212 | + public function limit(int $limit, int $offset = 0) { |
|
213 | 213 | $this->_limit = $limit; |
214 | 214 | $this->_offset = $offset; |
215 | 215 | return $this; |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | * @param string $name Name or alias if used. |
222 | 222 | * @return bool |
223 | 223 | */ |
224 | - public function offsetExists ($name): bool { |
|
224 | + public function offsetExists($name): bool { |
|
225 | 225 | return true; |
226 | 226 | } |
227 | 227 | |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | * @param string $name Name, or alias if used. |
232 | 232 | * @return Column |
233 | 233 | */ |
234 | - public function offsetGet ($name): Column { |
|
234 | + public function offsetGet($name): Column { |
|
235 | 235 | return new Column($this->db, $name, $this->alias); |
236 | 236 | } |
237 | 237 | |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | * @param string $order |
242 | 242 | * @return $this |
243 | 243 | */ |
244 | - public function order (string $order) { |
|
244 | + public function order(string $order) { |
|
245 | 245 | $this->_order = $order; |
246 | 246 | return $this; |
247 | 247 | } |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | /** |
250 | 250 | * @return Statement |
251 | 251 | */ |
252 | - public function prepare (): Statement { |
|
252 | + public function prepare(): Statement { |
|
253 | 253 | return $this->db->prepare($this->toSql()); |
254 | 254 | } |
255 | 255 | |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | * @param Closure $fetcher |
258 | 258 | * @return $this |
259 | 259 | */ |
260 | - public function setFetcher (Closure $fetcher) { |
|
260 | + public function setFetcher(Closure $fetcher) { |
|
261 | 261 | $this->fetcher = $fetcher; |
262 | 262 | return $this; |
263 | 263 | } |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | /** |
266 | 266 | * @return string |
267 | 267 | */ |
268 | - public function toSql (): string { |
|
268 | + public function toSql(): string { |
|
269 | 269 | $sql = SQL::select($this->table, $this->columns); |
270 | 270 | foreach ($this->_join as $join) { |
271 | 271 | $sql .= " {$join}"; |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | * |
284 | 284 | * @return string |
285 | 285 | */ |
286 | - public function toSubquery (): string { |
|
286 | + public function toSubquery(): string { |
|
287 | 287 | return "({$this->toSql()}) AS {$this->alias}"; |
288 | 288 | } |
289 | 289 | |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | * @param string $condition |
294 | 294 | * @return $this |
295 | 295 | */ |
296 | - public function where (string $condition) { |
|
296 | + public function where(string $condition) { |
|
297 | 297 | $this->_where[] = $condition; |
298 | 298 | return $this; |
299 | 299 | } |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * @param string $name |
31 | 31 | * @param string[] $columns |
32 | 32 | */ |
33 | - public function __construct (DB $db, $name, array $columns) { |
|
33 | + public function __construct(DB $db, $name, array $columns) { |
|
34 | 34 | parent::__construct($db); |
35 | 35 | $this->name = $name; |
36 | 36 | foreach ($columns as $column) { |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | * |
44 | 44 | * @return string |
45 | 45 | */ |
46 | - final public function __toString (): string { |
|
46 | + final public function __toString(): string { |
|
47 | 47 | return $this->name; |
48 | 48 | } |
49 | 49 | |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | * @param array $match |
56 | 56 | * @return int Rows affected. |
57 | 57 | */ |
58 | - public function delete (array $match): int { |
|
58 | + public function delete(array $match): int { |
|
59 | 59 | $match = SQL::all($this->db->matchArray($match)); |
60 | 60 | return $this->db->exec("DELETE FROM {$this} WHERE {$match}"); |
61 | 61 | } |
@@ -63,14 +63,14 @@ discard block |
||
63 | 63 | /** |
64 | 64 | * @return Column[] |
65 | 65 | */ |
66 | - final public function getColumns (): array { |
|
66 | + final public function getColumns(): array { |
|
67 | 67 | return $this->columns; |
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
71 | 71 | * @return string |
72 | 72 | */ |
73 | - final public function getName (): string { |
|
73 | + final public function getName(): string { |
|
74 | 74 | return $this->name; |
75 | 75 | } |
76 | 76 | |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | * @param array $values |
81 | 81 | * @return Statement |
82 | 82 | */ |
83 | - public function insert (array $values): Statement { |
|
83 | + public function insert(array $values): Statement { |
|
84 | 84 | $columns = implode(',', array_keys($values)); |
85 | 85 | $values = implode(', ', $this->db->quoteArray($values)); |
86 | 86 | return $this->db->query("INSERT INTO {$this} ($columns) VALUES ($values)"); |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | * @param string $name |
91 | 91 | * @return bool |
92 | 92 | */ |
93 | - public function offsetExists ($name): bool { |
|
93 | + public function offsetExists($name): bool { |
|
94 | 94 | return isset($this->columns[$name]); |
95 | 95 | } |
96 | 96 | |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | * @param string $name |
99 | 99 | * @return Column |
100 | 100 | */ |
101 | - public function offsetGet ($name): Column { |
|
101 | + public function offsetGet($name): Column { |
|
102 | 102 | return $this->columns[$name]; |
103 | 103 | } |
104 | 104 | |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | * @param string[] $columns Defaults to all columns. |
109 | 109 | * @return Select |
110 | 110 | */ |
111 | - public function select (array $columns = []): Select { |
|
111 | + public function select(array $columns = []): Select { |
|
112 | 112 | if (!$columns) { |
113 | 113 | $columns = $this->columns; |
114 | 114 | } |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | * @param string $name |
122 | 122 | * @return Table |
123 | 123 | */ |
124 | - public function setName (string $name) { |
|
124 | + public function setName(string $name) { |
|
125 | 125 | $clone = clone $this; |
126 | 126 | $clone->name = $name; |
127 | 127 | foreach ($this->columns as $name => $column) { |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | * @param array $match |
140 | 140 | * @return int Rows affected. |
141 | 141 | */ |
142 | - public function update (array $values, array $match): int { |
|
142 | + public function update(array $values, array $match): int { |
|
143 | 143 | $values = implode(', ', SQL::isEqual($this->db->quoteArray($values))); |
144 | 144 | $match = SQL::all($this->db->matchArray($match)); |
145 | 145 | return $this->db->exec("UPDATE {$this} SET {$values} WHERE {$match}"); |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | * @param Record $record The entity's storage access. |
19 | 19 | * @param $name |
20 | 20 | */ |
21 | - public function __construct (Record $record, $name) { |
|
21 | + public function __construct(Record $record, $name) { |
|
22 | 22 | $this->record = $record; |
23 | 23 | parent::__construct($record->db, $name, ['entity', 'attribute', 'value']); |
24 | 24 | } |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | * @param int $id |
30 | 30 | * @return int |
31 | 31 | */ |
32 | - public function count (int $id): int { |
|
32 | + public function count(int $id): int { |
|
33 | 33 | $count = $this->cache(__FUNCTION__, function() { |
34 | 34 | return $this->select(['COUNT(*)'])->where('entity=?')->prepare(); |
35 | 35 | }); |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | * @param string $attribute |
44 | 44 | * @return bool |
45 | 45 | */ |
46 | - public function exists (int $id, string $attribute): bool { |
|
46 | + public function exists(int $id, string $attribute): bool { |
|
47 | 47 | $exists = $this->cache(__FUNCTION__, function() { |
48 | 48 | return $this->select(['COUNT(*) > 0'])->where('entity = ? AND attribute = ?')->prepare(); |
49 | 49 | }); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * @param array $match `[attribute => value]`. If empty, selects all IDs for entities having at least one attribute. |
60 | 60 | * @return Select |
61 | 61 | */ |
62 | - public function find (array $match): Select { |
|
62 | + public function find(array $match): Select { |
|
63 | 63 | $select = $this->select([$this['entity']]); |
64 | 64 | $prior = $this; |
65 | 65 | foreach ($match as $attribute => $value) { |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | * @param int $id |
82 | 82 | * @return array `[attribute => value]` |
83 | 83 | */ |
84 | - public function load (int $id): array { |
|
84 | + public function load(int $id): array { |
|
85 | 85 | $load = $this->cache(__FUNCTION__, function() { |
86 | 86 | return $this->select(['attribute', 'value'])->where('entity = ?')->prepare(); |
87 | 87 | }); |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | * @param int[] $ids |
95 | 95 | * @return array[] `[id => attribute => value] |
96 | 96 | */ |
97 | - public function loadAll (array $ids): array { |
|
97 | + public function loadAll(array $ids): array { |
|
98 | 98 | if (count($ids) === 1) { |
99 | 99 | return [current($ids) => $this->load(current($ids))]; |
100 | 100 | } |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | * @param array $values `[attribute => value]` |
115 | 115 | * @return $this |
116 | 116 | */ |
117 | - public function save (int $id, array $values) { |
|
117 | + public function save(int $id, array $values) { |
|
118 | 118 | $this->delete([ |
119 | 119 | $this['entity']->isEqual($id), |
120 | 120 | $this['attribute']->isNotEqual(array_keys($values)) |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @param DB $db |
23 | 23 | */ |
24 | - protected function __construct (DB $db) { |
|
24 | + protected function __construct(DB $db) { |
|
25 | 25 | $this->db = $db; |
26 | 26 | } |
27 | 27 | |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * @param array $args |
32 | 32 | * @return $this |
33 | 33 | */ |
34 | - public function __invoke (array $args = null) { |
|
34 | + public function __invoke(array $args = null) { |
|
35 | 35 | $this->execute($args); |
36 | 36 | return $this; |
37 | 37 | } |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | * |
42 | 42 | * @return string |
43 | 43 | */ |
44 | - public function __toString () { |
|
44 | + public function __toString() { |
|
45 | 45 | return $this->queryString; |
46 | 46 | } |
47 | 47 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | * @return bool |
55 | 55 | * @throws ArgumentCountError |
56 | 56 | */ |
57 | - public function execute ($args = null) { |
|
57 | + public function execute($args = null) { |
|
58 | 58 | $this->db->getLogger()->__invoke($this->queryString); |
59 | 59 | if ($result = !parent::execute($args)) { |
60 | 60 | $info = $this->errorInfo(); |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | * |
72 | 72 | * @return int |
73 | 73 | */ |
74 | - public function getId (): int { |
|
74 | + public function getId(): int { |
|
75 | 75 | return (int)$this->db->lastInsertId(); |
76 | 76 | } |
77 | 77 | } |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | * @param string $passwd |
46 | 46 | * @param array $options |
47 | 47 | */ |
48 | - public function __construct ($dsn, $username = null, $passwd = null, $options = null) { |
|
48 | + public function __construct($dsn, $username = null, $passwd = null, $options = null) { |
|
49 | 49 | parent::__construct($dsn, $username, $passwd, $options); |
50 | 50 | $this->setAttribute(self::ATTR_DEFAULT_FETCH_MODE, self::FETCH_ASSOC); |
51 | 51 | $this->setAttribute(self::ATTR_EMULATE_PREPARES, false); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | * @param string $sql |
62 | 62 | * @return int |
63 | 63 | */ |
64 | - public function exec ($sql): int { |
|
64 | + public function exec($sql): int { |
|
65 | 65 | $this->logger->__invoke($sql); |
66 | 66 | return parent::exec($sql); |
67 | 67 | } |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | * |
72 | 72 | * @return string |
73 | 73 | */ |
74 | - final public function getDriver (): string { |
|
74 | + final public function getDriver(): string { |
|
75 | 75 | return $this->getAttribute(self::ATTR_DRIVER_NAME); |
76 | 76 | } |
77 | 77 | |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | * @param string $interface |
82 | 82 | * @return Junction |
83 | 83 | */ |
84 | - public function getJunction ($interface): Junction { |
|
84 | + public function getJunction($interface): Junction { |
|
85 | 85 | if (!isset($this->junctions[$interface])) { |
86 | 86 | $this->junctions[$interface] = new Junction($this, $interface); |
87 | 87 | } |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | /** |
92 | 92 | * @return Closure |
93 | 93 | */ |
94 | - public function getLogger (): Closure { |
|
94 | + public function getLogger(): Closure { |
|
95 | 95 | return $this->logger; |
96 | 96 | } |
97 | 97 | |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * @param string|EntityInterface $class |
102 | 102 | * @return Record |
103 | 103 | */ |
104 | - public function getRecord ($class): Record { |
|
104 | + public function getRecord($class): Record { |
|
105 | 105 | if (is_object($class)) { |
106 | 106 | $class = get_class($class); |
107 | 107 | } |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | * @param mixed $b |
127 | 127 | * @return string |
128 | 128 | */ |
129 | - public function match ($a, $b = null) { |
|
129 | + public function match($a, $b = null) { |
|
130 | 130 | if (is_int($a) and is_string($b)) { |
131 | 131 | return $b; |
132 | 132 | } |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | * @param array $match |
150 | 150 | * @return string[] |
151 | 151 | */ |
152 | - public function matchArray (array $match) { |
|
152 | + public function matchArray(array $match) { |
|
153 | 153 | return array_map([$this, 'match'], array_keys($match), $match); |
154 | 154 | } |
155 | 155 | |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | * @param mixed $match |
162 | 162 | * @return string|string[] |
163 | 163 | */ |
164 | - public function matchMixed ($match) { |
|
164 | + public function matchMixed($match) { |
|
165 | 165 | if (is_array($match)) { |
166 | 166 | return $this->matchArray($match); |
167 | 167 | } |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | * @param string $access Class or interface name. |
173 | 173 | * @return bool |
174 | 174 | */ |
175 | - public function offsetExists ($access): bool { |
|
175 | + public function offsetExists($access): bool { |
|
176 | 176 | return (bool)$this->offsetGet($access); |
177 | 177 | } |
178 | 178 | |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | * @param string $access Class or interface name. |
181 | 181 | * @return null|Record|Junction |
182 | 182 | */ |
183 | - public function offsetGet ($access) { |
|
183 | + public function offsetGet($access) { |
|
184 | 184 | if (class_exists($access)) { |
185 | 185 | return $this->getRecord($access); |
186 | 186 | } |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | * @param void $value |
198 | 198 | * @throws Exception |
199 | 199 | */ |
200 | - final public function offsetSet ($access, $value): void { |
|
200 | + final public function offsetSet($access, $value): void { |
|
201 | 201 | throw new Exception('The schema is immutable.'); |
202 | 202 | } |
203 | 203 | |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | * @param void $access |
208 | 208 | * @throws Exception |
209 | 209 | */ |
210 | - final public function offsetUnset ($access): void { |
|
210 | + final public function offsetUnset($access): void { |
|
211 | 211 | $this->offsetSet($access, null); |
212 | 212 | } |
213 | 213 | |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | * @param array $options |
219 | 219 | * @return Statement |
220 | 220 | */ |
221 | - public function prepare ($sql, $options = []): Statement { |
|
221 | + public function prepare($sql, $options = []): Statement { |
|
222 | 222 | $this->logger->__invoke($sql); |
223 | 223 | /** @var Statement $statement */ |
224 | 224 | $statement = parent::prepare($sql, $options); |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | * @param array $ctorargs |
235 | 235 | * @return Statement |
236 | 236 | */ |
237 | - public function query ($sql, $mode = PDO::ATTR_DEFAULT_FETCH_MODE, $arg3 = null, array $ctorargs = []): Statement { |
|
237 | + public function query($sql, $mode = PDO::ATTR_DEFAULT_FETCH_MODE, $arg3 = null, array $ctorargs = []): Statement { |
|
238 | 238 | $this->logger->__invoke($sql); |
239 | 239 | /** @var Statement $statement */ |
240 | 240 | $statement = parent::query(...func_get_args()); |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | * @param int $type Ignored. |
254 | 254 | * @return string |
255 | 255 | */ |
256 | - public function quote ($value, $type = null) { |
|
256 | + public function quote($value, $type = null) { |
|
257 | 257 | if ($value instanceof ExpressionInterface) { |
258 | 258 | return $value; |
259 | 259 | } |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | * @param array $values |
274 | 274 | * @return array |
275 | 275 | */ |
276 | - public function quoteArray (array $values): array { |
|
276 | + public function quoteArray(array $values): array { |
|
277 | 277 | return array_map([$this, 'quote'], $values); |
278 | 278 | } |
279 | 279 | |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | * @param mixed $value |
284 | 284 | * @return array|string |
285 | 285 | */ |
286 | - public function quoteMixed ($value) { |
|
286 | + public function quoteMixed($value) { |
|
287 | 287 | if (is_array($value)) { |
288 | 288 | return $this->quoteArray($value); |
289 | 289 | } |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | * @param EntityInterface $entity |
297 | 297 | * @return int ID |
298 | 298 | */ |
299 | - public function save (EntityInterface $entity): int { |
|
299 | + public function save(EntityInterface $entity): int { |
|
300 | 300 | return $this->getRecord($entity)->save($entity); |
301 | 301 | } |
302 | 302 | |
@@ -304,7 +304,7 @@ discard block |
||
304 | 304 | * @param Closure $logger |
305 | 305 | * @return $this |
306 | 306 | */ |
307 | - public function setLogger (Closure $logger) { |
|
307 | + public function setLogger(Closure $logger) { |
|
308 | 308 | $this->logger = $logger; |
309 | 309 | return $this; |
310 | 310 | } |