@@ -27,7 +27,7 @@ |
||
27 | 27 | } |
28 | 28 | $this->owner->withListOriginal = $list; |
29 | 29 | $list = array_map( |
30 | - function ($e) { |
|
30 | + function($e) { |
|
31 | 31 | return explode('.', $e); |
32 | 32 | }, |
33 | 33 | $list |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | { |
38 | 38 | $this->autoFollowRedirection = false; |
39 | 39 | $this->logInAs('admin'); |
40 | - $this->assertTrue((bool)Permission::check("ADMIN")); |
|
40 | + $this->assertTrue((bool) Permission::check("ADMIN")); |
|
41 | 41 | $this->assertEquals(200, $this->get('admin/eltestadmin')->getStatusCode()); |
42 | 42 | } |
43 | 43 | |
@@ -66,14 +66,14 @@ discard block |
||
66 | 66 | $exportActionStateID = $this->getActionSessionKey('export'); |
67 | 67 | $exportActionText = _t('SilverStripe\\Forms\\GridField\\GridField.CSVEXPORT', 'Export to CSV'); |
68 | 68 | $getVars = [ |
69 | - 'action_gridFieldAlterAction?StateID=' . $exportActionStateID => $exportActionText, |
|
69 | + 'action_gridFieldAlterAction?StateID='.$exportActionStateID => $exportActionText, |
|
70 | 70 | ]; |
71 | 71 | |
72 | 72 | $this->autoFollowRedirection = false; |
73 | 73 | $this->logInAs('admin'); |
74 | - $this->assertTrue((bool)Permission::check("ADMIN")); |
|
74 | + $this->assertTrue((bool) Permission::check("ADMIN")); |
|
75 | 75 | $modelClassName = "Gurucomkz-EagerLoading-Tests-Models-Player"; |
76 | - $getLink = "admin/eltestadmin/$modelClassName/EditForm/field/$modelClassName?" . http_build_query($getVars); |
|
76 | + $getLink = "admin/eltestadmin/$modelClassName/EditForm/field/$modelClassName?".http_build_query($getVars); |
|
77 | 77 | |
78 | 78 | $this->assertEquals(200, $this->get($getLink)->getStatusCode()); |
79 | 79 | } |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | preg_match_all('/"action_gridFieldAlterAction\?StateID=([^"]+)"/', $body, $matches); |
91 | 91 | |
92 | 92 | /** @var StateStore $store */ |
93 | - $store = Injector::inst()->create(StateStore::class . '.' . 'Gurucomkz-EagerLoading-Tests-Models-Player'); |
|
93 | + $store = Injector::inst()->create(StateStore::class.'.'.'Gurucomkz-EagerLoading-Tests-Models-Player'); |
|
94 | 94 | |
95 | 95 | foreach ($matches[1] as $actionCode) { |
96 | 96 | $actionData = $store->load($actionCode); |
@@ -20,10 +20,10 @@ |
||
20 | 20 | protected static $queries = []; |
21 | 21 | |
22 | 22 | |
23 | - public function updateProxy(ProxyGenerator &$proxy) |
|
23 | + public function updateProxy(ProxyGenerator & $proxy) |
|
24 | 24 | { |
25 | 25 | // In the closure, $this is the proxied database |
26 | - $callback = function ($args, $next) { |
|
26 | + $callback = function($args, $next) { |
|
27 | 27 | |
28 | 28 | // The first argument is always the sql query |
29 | 29 | $sql = $args[0]; |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | { |
66 | 66 | return array_filter( |
67 | 67 | $this->withList, |
68 | - function ($dep) use ($list) { |
|
68 | + function($dep) use ($list) { |
|
69 | 69 | return array_key_exists($dep[0], $list); |
70 | 70 | } |
71 | 71 | ); |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | $fields[] = "\"{$dep}ID\""; |
125 | 125 | } |
126 | 126 | $table = DataObject::getSchema()->tableName($this->dataClass); |
127 | - $data = new SQLSelect($fields, '"' . $table . '"', ['"ID" IN (' . implode(',', $ids) . ')']); |
|
127 | + $data = new SQLSelect($fields, '"'.$table.'"', ['"ID" IN ('.implode(',', $ids).')']); |
|
128 | 128 | $data = Utils::EnsureArray($data->execute(), 'ID'); |
129 | 129 | |
130 | 130 | foreach ($withHasOnes as $depSeq) { |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | while (count($uniqueIDs)) { |
143 | 143 | $IDsubset = array_splice($uniqueIDs, 0, self::ID_LIMIT); |
144 | 144 | $result = DataObject::get($depClass)->filter('ID', $IDsubset); |
145 | - if (count($depSeq)>1) { |
|
145 | + if (count($depSeq) > 1) { |
|
146 | 146 | $result = $result |
147 | 147 | ->with(implode('.', array_slice($depSeq, 1))); |
148 | 148 | } |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | 'map' => [], |
180 | 180 | ]; |
181 | 181 | $result = DataObject::get($depClass)->filter($depKey, $data); |
182 | - if (count($depSeq)>1) { |
|
182 | + if (count($depSeq) > 1) { |
|
183 | 183 | $result = $result |
184 | 184 | ->with(implode('.', array_slice($depSeq, 1))); |
185 | 185 | } |
@@ -221,8 +221,8 @@ discard block |
||
221 | 221 | |
222 | 222 | $table = DataObject::getSchema()->tableName($throughClass); |
223 | 223 | |
224 | - $childField = $depData['to']. 'ID'; |
|
225 | - $parentField = $depData['from']. 'ID'; |
|
224 | + $childField = $depData['to'].'ID'; |
|
225 | + $parentField = $depData['from'].'ID'; |
|
226 | 226 | |
227 | 227 | if ($defaultSort = Config::inst()->get($throughClass, 'default_sort')) { |
228 | 228 | $sort[] = $defaultSort; |
@@ -243,12 +243,12 @@ discard block |
||
243 | 243 | |
244 | 244 | $idsQuery = SQLSelect::create( |
245 | 245 | [ |
246 | - '"' . $childField . '"', |
|
247 | - '"' . $parentField . '"', |
|
246 | + '"'.$childField.'"', |
|
247 | + '"'.$parentField.'"', |
|
248 | 248 | ], |
249 | - '"' . $table . '"', |
|
249 | + '"'.$table.'"', |
|
250 | 250 | [ |
251 | - '"' . $parentField . '" IN (' . implode(',', $data) . ')' |
|
251 | + '"'.$parentField.'" IN ('.implode(',', $data).')' |
|
252 | 252 | ], |
253 | 253 | $sort, |
254 | 254 | )->execute(); |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | |
268 | 268 | if (count($relListReverted)) { |
269 | 269 | $result = DataObject::get($depClass)->filter('ID', array_keys($relListReverted)); |
270 | - if (count($depSeq)>1) { |
|
270 | + if (count($depSeq) > 1) { |
|
271 | 271 | $result = $result |
272 | 272 | ->with(implode('.', array_slice($depSeq, 1))); |
273 | 273 | } |
@@ -308,8 +308,8 @@ discard block |
||
308 | 308 | } |
309 | 309 | if (!method_exists($item, 'addEagerRelation')) { |
310 | 310 | throw new EagerLoadingException( |
311 | - "Model {$item->ClassName} must include " . |
|
312 | - EagerLoaderMultiAccessor::class . |
|
311 | + "Model {$item->ClassName} must include ". |
|
312 | + EagerLoaderMultiAccessor::class. |
|
313 | 313 | " trait to use eager loading for \$has_many" |
314 | 314 | ); |
315 | 315 | } |
@@ -331,8 +331,8 @@ discard block |
||
331 | 331 | } |
332 | 332 | if (!method_exists($item, 'addEagerRelation')) { |
333 | 333 | throw new EagerLoadingException( |
334 | - "Model {$item->ClassName} must include " . |
|
335 | - EagerLoaderMultiAccessor::class . |
|
334 | + "Model {$item->ClassName} must include ". |
|
335 | + EagerLoaderMultiAccessor::class. |
|
336 | 336 | " trait to use eager loading for \$many_many" |
337 | 337 | ); |
338 | 338 | } |
@@ -114,7 +114,7 @@ |
||
114 | 114 | foreach ($teams as $team) { |
115 | 115 | $supporters = $team->Supporters()->map()->toArray(); |
116 | 116 | // print_r(ProxyDBCounterExtension::getQueries()); |
117 | - switch($team->Title){ |
|
117 | + switch ($team->Title) { |
|
118 | 118 | case 'The Hurricanes': |
119 | 119 | $this->assertCount(3, $supporters); |
120 | 120 | $this->assertEquals([ |