Skip to content

Commit 5e956f7

Browse files
committed
formatting
1 parent 703ec88 commit 5e956f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

api.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3857,7 +3857,7 @@ public function build(): OpenApiDefinition
38573857
$this->openapi->set("components|responses|rows_affected|content|application/json|schema|format", "int64");
38583858
$tableReferences = $this->getAllTableReferences();
38593859
foreach ($tableNames as $tableName) {
3860-
$references = isset($tableReferences[$tableName])?$tableReferences[$tableName]:array();
3860+
$references = isset($tableReferences[$tableName]) ? $tableReferences[$tableName] : array();
38613861
$this->setComponentSchema($tableName, $references);
38623862
$this->setComponentResponse($tableName);
38633863
$this->setComponentRequestBody($tableName);

src/Tqdev/PhpCrudApi/OpenApi/OpenApiBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public function build(): OpenApiDefinition
9090
$this->openapi->set("components|responses|rows_affected|content|application/json|schema|format", "int64");
9191
$tableReferences = $this->getAllTableReferences();
9292
foreach ($tableNames as $tableName) {
93-
$references = isset($tableReferences[$tableName])?$tableReferences[$tableName]:array();
93+
$references = isset($tableReferences[$tableName]) ? $tableReferences[$tableName] : array();
9494
$this->setComponentSchema($tableName, $references);
9595
$this->setComponentResponse($tableName);
9696
$this->setComponentRequestBody($tableName);

0 commit comments

Comments
 (0)