Skip to content

Commit 4fa8f3d

Browse files
committed
ran php cs fixer
1 parent e9ebb1e commit 4fa8f3d

File tree

4 files changed

+1
-7
lines changed

4 files changed

+1
-7
lines changed

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
namespace Laudis\Neo4j;
1515

16+
use function array_key_exists;
1617
use InvalidArgumentException;
1718
use Laudis\Neo4j\Contracts\ClientInterface;
1819
use Laudis\Neo4j\Contracts\DriverInterface;
@@ -27,7 +28,6 @@
2728
use Laudis\Neo4j\Enum\AccessMode;
2829
use Laudis\Neo4j\Types\CypherList;
2930
use Laudis\Neo4j\Types\CypherMap;
30-
use function array_key_exists;
3131

3232
/**
3333
* A collection of drivers with methods to run queries though them.

src/Types/AbstractCypherSequence.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
use function array_key_exists;
1717
use function array_search;
18-
use ArrayAccess;
1918
use function count;
2019
use Countable;
2120
use function implode;
@@ -209,9 +208,6 @@ abstract public function sorted(?callable $comparator = null): self;
209208

210209
/**
211210
* Joins the values within the sequence together with the provided glue. If the glue is null, it will be an empty string.
212-
*
213-
* @param string|null $glue
214-
* @return string
215211
*/
216212
public function join(?string $glue = null): string
217213
{

src/Types/AbstractPropertyObject.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
use BadMethodCallException;
1717
use function get_class;
18-
use JsonSerializable;
1918
use Laudis\Neo4j\Contracts\HasPropertiesInterface;
2019
use function sprintf;
2120

src/Types/Node.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
*
2424
* @psalm-immutable
2525
*
26-
*
2726
* @psalm-immutable
2827
*
2928
* @extends AbstractPropertyObject<OGMTypes, int|string|CypherMap<OGMTypes>>

0 commit comments

Comments
 (0)