Skip to content

Commit ec86e5b

Browse files
committed
ran php cs fixer
1 parent 2a6ea72 commit ec86e5b

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

src/Authentication/UrlAuth.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ public function extractFromUri(UriInterface $uri): AuthenticateInterface
4343
{
4444
if (substr_count($uri->getUserInfo(), ':') === 1) {
4545
[$user, $pass] = explode(':', $uri->getUserInfo());
46+
4647
return Authenticate::basic($user, $pass);
4748
}
4849

src/Neo4j/Neo4jDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515

1616
use Bolt\Bolt;
1717
use Exception;
18-
use Laudis\Neo4j\Bolt\BoltConnectionPool;
1918
use function is_string;
2019
use Laudis\Neo4j\Authentication\Authenticate;
20+
use Laudis\Neo4j\Bolt\BoltConnectionPool;
2121
use Laudis\Neo4j\Bolt\Session;
2222
use Laudis\Neo4j\Common\Uri;
2323
use Laudis\Neo4j\Contracts\AuthenticateInterface;

src/ParameterHelper.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ public static function asMap(iterable $iterable): CypherMap
5151
foreach ($iterable as $key => $value) {
5252
$tbr[(string) $key] = $value;
5353
}
54+
5455
return new CypherMap($tbr);
5556
}
5657

tests/Unit/BoltCypherFormatterTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ public function testResource(): void
8787
private function getConnection(): BoltConnection
8888
{
8989
$connection = $this->getMockBuilder(IConnection::class)->getMock();
90+
9091
return new BoltConnection(
9192
new Bolt($connection),
9293
$connection,

0 commit comments

Comments
 (0)