From 09f7b97d72050466ff25a0c649e61ae39c37c782 Mon Sep 17 00:00:00 2001 From: Cerys Date: Fri, 7 Jun 2024 00:55:38 +0100 Subject: [PATCH 1/3] quick argument name change --- src/QueryBuilder/QueryBuilders/SelectQuery.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/QueryBuilder/QueryBuilders/SelectQuery.php b/src/QueryBuilder/QueryBuilders/SelectQuery.php index e8b7b1e..276cc26 100755 --- a/src/QueryBuilder/QueryBuilders/SelectQuery.php +++ b/src/QueryBuilder/QueryBuilders/SelectQuery.php @@ -53,9 +53,9 @@ final class SelectQuery $this->Where = "" . $target . " " . $operator->value . " " . $value; return $this; } - public function InstanceOf(string $target): SelectQuery + public function InstanceOf(string $schema): SelectQuery { - $this->InstanceOf = "" . $target; + $this->InstanceOf = "" . $schema; return $this; } } \ No newline at end of file -- 2.39.5 From 8ab3254ad571a35b125fea59cd757102a29ce666 Mon Sep 17 00:00:00 2001 From: Cerys Date: Sun, 9 Jun 2024 20:20:25 +0100 Subject: [PATCH 2/3] typo fix --- ...or.php => DeegraphNumericalComparator.php} | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) rename src/Enumerators/{DeegraphNumericalComparitor.php => DeegraphNumericalComparator.php} (78%) diff --git a/src/Enumerators/DeegraphNumericalComparitor.php b/src/Enumerators/DeegraphNumericalComparator.php similarity index 78% rename from src/Enumerators/DeegraphNumericalComparitor.php rename to src/Enumerators/DeegraphNumericalComparator.php index 2a7e985..94af3a0 100644 --- a/src/Enumerators/DeegraphNumericalComparitor.php +++ b/src/Enumerators/DeegraphNumericalComparator.php @@ -1,12 +1,12 @@ -"; - case LESS_THAN_OR_EQUAL_TO = "<="; - case MORE_THAN_OR_EQUAL_TO = ">="; -} - +"; + case LESS_THAN_OR_EQUAL_TO = "<="; + case MORE_THAN_OR_EQUAL_TO = ">="; +} + -- 2.39.5 From 928c7001a05c9eafb3ffbc157f91aab8e48f49e5 Mon Sep 17 00:00:00 2001 From: Cerys Date: Sun, 9 Jun 2024 21:36:21 +0100 Subject: [PATCH 3/3] updated the developer email address --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index a6908ee..b9415aa 100755 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "authors": [ { "name": "Cerys Lewis", - "email": "cerys@darksparrow.uk", + "email": "cerys.lewis@darksparrow.uk", "homepage": "https://ceryslewis.dev", "role": "Lead Developer" } -- 2.39.5