@@ -142,17 +142,17 @@ discard block |
||
| 142 | 142 | public function buildTemplateParameters(): void |
| 143 | 143 | { |
| 144 | 144 | $this->titleFields = $this->fModel->filterField( |
| 145 | - function (Field $field) { |
|
| 145 | + function(Field $field) { |
|
| 146 | 146 | return $field->getRenderable('title', false); |
| 147 | 147 | } |
| 148 | 148 | ); |
| 149 | 149 | $this->cardFields = $this->fModel->filterField( |
| 150 | - function (Field $field) { |
|
| 150 | + function(Field $field) { |
|
| 151 | 151 | return $field->getRenderable('card', false); |
| 152 | 152 | } |
| 153 | 153 | ); |
| 154 | 154 | $this->tableFields = $this->fModel->filterField( |
| 155 | - function (Field $field) { |
|
| 155 | + function(Field $field) { |
|
| 156 | 156 | return $field->getRenderable('table', false); |
| 157 | 157 | } |
| 158 | 158 | ); |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | 'Table', |
| 209 | 209 | [ |
| 210 | 210 | Table::ROW_NAMES => array_map( |
| 211 | - function (Field $field) { |
|
| 211 | + function(Field $field) { |
|
| 212 | 212 | return $field->getRenderable(Renderable::LABEL, $field->getName()); |
| 213 | 213 | }, |
| 214 | 214 | $this->tableFields |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | true |
| 227 | 227 | ); |
| 228 | 228 | $titleFields = $this->fModel->filterField( |
| 229 | - function (Field $field) { |
|
| 229 | + function(Field $field) { |
|
| 230 | 230 | return $field->getRenderable('title', false); |
| 231 | 231 | } |
| 232 | 232 | ); |
@@ -252,7 +252,7 @@ discard block |
||
| 252 | 252 | 'keyAttribute' => $this->keyAttribute, |
| 253 | 253 | 'spinner' => $spinner, |
| 254 | 254 | 'tablelist' => $table->getRenderHTML(), |
| 255 | - 'tableItemFields' => array_keys(array_map(function (Field $f) { |
|
| 255 | + 'tableItemFields' => array_keys(array_map(function(Field $f) { |
|
| 256 | 256 | return $f->getName(); |
| 257 | 257 | }, $this->tableFields)), |
| 258 | 258 | 'typeTitle' => $this->fModel->getRenderable('name', $this->studlyName), |
@@ -330,13 +330,13 @@ discard block |
||
| 330 | 330 | $filters[] = [ |
| 331 | 331 | 'name' => $arg->name, |
| 332 | 332 | 'type' => $typename, |
| 333 | - 'graphqlType' => $arg->name . ': ' . |
|
| 333 | + 'graphqlType' => $arg->name . ': ' . |
|
| 334 | 334 | ($isArray ? '[' : '') . |
| 335 | 335 | $typename . |
| 336 | 336 | $isInternalRequiredString, // TODO: phpstan complains, issue with graphqlphp ($isInternalRequired ? '!' : '') . |
| 337 | 337 | ($isArray ? ']' : '') . |
| 338 | 338 | ($isRequired ? '!' : ''), |
| 339 | - 'required' => (bool)$isRequired, |
|
| 339 | + 'required' => (bool) $isRequired, |
|
| 340 | 340 | 'requiredJSBoolean' => $isRequired ? 'true' : 'false' |
| 341 | 341 | ]; |
| 342 | 342 | } |
@@ -352,13 +352,13 @@ discard block |
||
| 352 | 352 | * card |
| 353 | 353 | */ |
| 354 | 354 | $cardFieldNames = array_map( |
| 355 | - function (Field $field) { |
|
| 355 | + function(Field $field) { |
|
| 356 | 356 | return $field->getName(); |
| 357 | 357 | }, |
| 358 | 358 | $this->cardFields |
| 359 | 359 | ); |
| 360 | 360 | $graphqlQuery = $this->fModel->mapFields( |
| 361 | - function (Field $f) use ($cardFieldNames) { |
|
| 361 | + function(Field $f) use ($cardFieldNames) { |
|
| 362 | 362 | if (in_array($f->getName(), $cardFieldNames)) { |
| 363 | 363 | // TODO: filter subfields in relationships |
| 364 | 364 | return $f->toGraphqlQuery(); |
@@ -374,7 +374,7 @@ discard block |
||
| 374 | 374 | $filtersQuery = ', ' . join( |
| 375 | 375 | ', ', |
| 376 | 376 | array_map( |
| 377 | - function ($item) { |
|
| 377 | + function($item) { |
|
| 378 | 378 | // TODO: still buggy, misses the internal ! in [Xyz!]! |
| 379 | 379 | return '$' . $item['graphqlType']; |
| 380 | 380 | }, |
@@ -384,7 +384,7 @@ discard block |
||
| 384 | 384 | $filtersParams = ', ' . join( |
| 385 | 385 | ', ', |
| 386 | 386 | array_map( |
| 387 | - function ($item) { |
|
| 387 | + function($item) { |
|
| 388 | 388 | return $item['name'] . ': $' . $item['name']; |
| 389 | 389 | }, |
| 390 | 390 | $filters |
@@ -423,14 +423,14 @@ discard block |
||
| 423 | 423 | * table |
| 424 | 424 | */ |
| 425 | 425 | $tableFieldNames = array_map( |
| 426 | - function (Field $field) { |
|
| 426 | + function(Field $field) { |
|
| 427 | 427 | return $field->getName(); |
| 428 | 428 | }, |
| 429 | 429 | $this->tableFields |
| 430 | 430 | ); |
| 431 | 431 | |
| 432 | 432 | $graphqlQuery = $this->fModel->mapFields( |
| 433 | - function (Field $f) use ($tableFieldNames) { |
|
| 433 | + function(Field $f) use ($tableFieldNames) { |
|
| 434 | 434 | if (in_array($f->getName(), $tableFieldNames)) { |
| 435 | 435 | // TODO: filter subfields in relationships |
| 436 | 436 | return $f->toGraphqlQuery(); |
@@ -470,7 +470,7 @@ discard block |
||
| 470 | 470 | * item |
| 471 | 471 | */ |
| 472 | 472 | $graphqlQuery = $this->fModel->mapFields( |
| 473 | - function (Field $f) { |
|
| 473 | + function(Field $f) { |
|
| 474 | 474 | return \Modelarium\Frontend\Util::fieldShow($f) ? $f->toGraphqlQuery() : null; |
| 475 | 475 | } |
| 476 | 476 | ); |