Skip to content

Commit

Permalink
Confirm Style Guide
Browse files Browse the repository at this point in the history
~ add missing space (style guide)
  • Loading branch information
puschie286 committed Jun 27, 2023
1 parent e17ebdd commit 29d6ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Database/SQLSRV/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public function connect(bool $persistent = false)
unset($connection['UID'], $connection['PWD']);
}

if (strpos($this->hostname, ',') === false && $this->port !== '' && (int)$this->port !== 1433) {
if (strpos($this->hostname, ',') === false && $this->port !== '' && (int) $this->port !== 1433) {
$this->hostname .= ', ' . $this->port;
}

Expand Down

0 comments on commit 29d6ddd

Please sign in to comment.