@@ -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]; |
@@ -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->assertTrue(in_array('Supporter 1', $supporters)); |
@@ -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) { |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | $IDsubset = array_splice($uniqueIDs, 0, self::ID_LIMIT); |
144 | 144 | $result = DataObject::get($depClass)->filter('ID', $IDsubset); |
145 | 145 | $this->extend('onEagerLoadHasOneMany', $result, $data, $depSeq, $withHasOnes); |
146 | - if (count($depSeq)>1) { |
|
146 | + if (count($depSeq) > 1) { |
|
147 | 147 | $result = $result |
148 | 148 | ->with(implode('.', array_slice($depSeq, 1))); |
149 | 149 | } |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | ]; |
182 | 182 | $result = DataObject::get($depClass)->filter($depKey, $data); |
183 | 183 | $this->extend('onEagerLoadHasMany', $result, $depKey, $data, $depSeq, $withHasManys); |
184 | - if (count($depSeq)>1) { |
|
184 | + if (count($depSeq) > 1) { |
|
185 | 185 | $result = $result |
186 | 186 | ->with(implode('.', array_slice($depSeq, 1))); |
187 | 187 | } |
@@ -222,8 +222,8 @@ discard block |
||
222 | 222 | |
223 | 223 | $table = DataObject::getSchema()->tableName($throughClass); |
224 | 224 | |
225 | - $childField = $depData['to']. 'ID'; |
|
226 | - $parentField = $depData['from']. 'ID'; |
|
225 | + $childField = $depData['to'].'ID'; |
|
226 | + $parentField = $depData['from'].'ID'; |
|
227 | 227 | } else { |
228 | 228 | $depClass = $depData; |
229 | 229 | $component = $schema->manyManyComponent($localClass, $dep); |
@@ -240,12 +240,12 @@ discard block |
||
240 | 240 | |
241 | 241 | $idsQuery = SQLSelect::create( |
242 | 242 | [ |
243 | - '"' . $childField . '"', |
|
244 | - '"' . $parentField . '"', |
|
243 | + '"'.$childField.'"', |
|
244 | + '"'.$parentField.'"', |
|
245 | 245 | ], |
246 | - '"' . $table . '"', |
|
246 | + '"'.$table.'"', |
|
247 | 247 | [ |
248 | - '"' . $parentField . '" IN (' . implode(',', $data) . ')' |
|
248 | + '"'.$parentField.'" IN ('.implode(',', $data).')' |
|
249 | 249 | ] |
250 | 250 | )->execute(); |
251 | 251 | |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | if (count($relListReverted)) { |
265 | 265 | $result = DataObject::get($depClass)->filter('ID', array_keys($relListReverted)); |
266 | 266 | $this->extend('onEagerLoadManyMany', $result, $data, $depSeq, $withManyManys); |
267 | - if (count($depSeq)>1) { |
|
267 | + if (count($depSeq) > 1) { |
|
268 | 268 | $result = $result |
269 | 269 | ->with(implode('.', array_slice($depSeq, 1))); |
270 | 270 | } |
@@ -305,8 +305,8 @@ discard block |
||
305 | 305 | } |
306 | 306 | if (!method_exists($item, 'addEagerRelation')) { |
307 | 307 | throw new EagerLoadingException( |
308 | - "Model {$item->ClassName} must include " . |
|
309 | - EagerLoaderMultiAccessor::class . |
|
308 | + "Model {$item->ClassName} must include ". |
|
309 | + EagerLoaderMultiAccessor::class. |
|
310 | 310 | " trait to use eager loading for \$has_many" |
311 | 311 | ); |
312 | 312 | } |
@@ -328,8 +328,8 @@ discard block |
||
328 | 328 | } |
329 | 329 | if (!method_exists($item, 'addEagerRelation')) { |
330 | 330 | throw new EagerLoadingException( |
331 | - "Model {$item->ClassName} must include " . |
|
332 | - EagerLoaderMultiAccessor::class . |
|
331 | + "Model {$item->ClassName} must include ". |
|
332 | + EagerLoaderMultiAccessor::class. |
|
333 | 333 | " trait to use eager loading for \$many_many" |
334 | 334 | ); |
335 | 335 | } |