Skip to content

Commit 31c9b02

Browse files
committed
Lint fix
1 parent 15a3eb9 commit 31c9b02

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/ApiCall.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ class ApiCall
6868
*/
6969
public function __construct(Configuration $config)
7070
{
71-
$this->config = $config;
72-
$this->logger = $config->getLogger();
73-
$this->client = $config->getClient();
71+
$this->config = $config;
72+
$this->logger = $config->getLogger();
73+
$this->client = $config->getClient();
7474
static::$nodes = $this->config->getNodes();
7575
static::$nearestNode = $this->config->getNearestNode();
76-
$this->nodeIndex = 0;
76+
$this->nodeIndex = 0;
7777
$this->initializeNodes();
7878
}
7979

src/Collection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function __construct(string $name, ApiCall $apiCall)
5252
$this->apiCall = $apiCall;
5353
$this->documents = new Documents($name, $this->apiCall);
5454
$this->overrides = new Overrides($name, $this->apiCall);
55-
$this->synonyms = new Synonyms($name, $this->apiCall);
55+
$this->synonyms = new Synonyms($name, $this->apiCall);
5656
}
5757

5858
/**

src/Synonym.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Synonym
3838
public function __construct(string $collectionName, string $synonymId, ApiCall $apiCall)
3939
{
4040
$this->collectionName = $collectionName;
41-
$this->synonymId = $synonymId;
41+
$this->synonymId = $synonymId;
4242
$this->apiCall = $apiCall;
4343
}
4444

0 commit comments

Comments
 (0)