Skip to content

Commit 3e06557

Browse files
committed
ran php-cs-fixer
1 parent d300b5d commit 3e06557

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/IsNotNull.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121

2222
namespace WikibaseSolutions\CypherDSL;
2323

24+
use function sprintf;
2425
use WikibaseSolutions\CypherDSL\Traits\BooleanTypeTrait;
2526
use WikibaseSolutions\CypherDSL\Types\AnyType;
2627
use WikibaseSolutions\CypherDSL\Types\PropertyTypes\BooleanType;
27-
use function sprintf;
2828

2929
/**
3030
* Represents the IS NOT NULL comparison operator.
@@ -79,4 +79,4 @@ public function insertsParentheses(): bool
7979
{
8080
return $this->insertParentheses;
8181
}
82-
}
82+
}

src/IsNull.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121

2222
namespace WikibaseSolutions\CypherDSL;
2323

24+
use function sprintf;
2425
use WikibaseSolutions\CypherDSL\Traits\BooleanTypeTrait;
2526
use WikibaseSolutions\CypherDSL\Types\AnyType;
2627
use WikibaseSolutions\CypherDSL\Types\PropertyTypes\BooleanType;
27-
use function sprintf;
2828

2929
/**
3030
* Represents the IS NULL comparison operator.
@@ -79,4 +79,4 @@ public function insertsParentheses(): bool
7979
{
8080
return $this->insertParentheses;
8181
}
82-
}
82+
}

0 commit comments

Comments
 (0)