Skip to content

Commit 63acd69

Browse files
Fix code style issues
1 parent a2024d8 commit 63acd69

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/Database/Query/FMBaseBuilder.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,9 @@ public function where($column, $operator = null, $value = null, $boolean = 'and'
180180
$this->addFindRequest();
181181
}
182182

183-
if ($shouldBeOmit) {
184-
$this->omit();
185-
}
183+
if ($shouldBeOmit) {
184+
$this->omit();
185+
}
186186

187187
// If the column is an array, we will assume it is an array of key-value pairs
188188
// and can add them each as a where clause. We will maintain the boolean we

src/Services/FileMakerConnection.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ public function setGlobalFields(array $globalFields)
652652
/**
653653
* @throws FileMakerDataApiException
654654
*/
655-
protected function makeRequest($method, $url, $params = [], ?PendingRequest $request = null)
655+
protected function makeRequest($method, $url, $params = [], PendingRequest $request = null)
656656
{
657657
$this->login();
658658

@@ -740,11 +740,11 @@ protected function getDefaultQueryGrammar()
740740
return new FMGrammar();
741741
}
742742

743-
// public function getLayoutMetadata($layout = null)
744-
// {
745-
// $response = $this->makeRequest('get', $this->getLayoutUrl($layout));
746-
// return $response['response'];
747-
// }
743+
//public function getLayoutMetadata($layout = null)
744+
//{
745+
// $response = $this->makeRequest('get', $this->getLayoutUrl($layout));
746+
// return $response['response'];
747+
//}
748748

749749
/**
750750
* @param string|FMBaseBuilder $query

0 commit comments

Comments
 (0)