-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…` operators. Closes: #104
- Loading branch information
1 parent
4fcd852
commit ca93702
Showing
17 changed files
with
659 additions
and
2 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
packages/graphql/src/SearchBy/Definitions/SearchByOperatorNotContainsDirective.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace LastDragon_ru\LaraASP\GraphQL\SearchBy\Definitions; | ||
|
||
use LastDragon_ru\LaraASP\GraphQL\SearchBy\Operators\Comparison\NotContains; | ||
|
||
class SearchByOperatorNotContainsDirective extends NotContains { | ||
// Lighthouse loads all classes from directive namespace this leads to | ||
// 'Class "Orchestra\Testbench\TestCase" not found' error for our *Test | ||
// classes. This class required to avoid this error. | ||
} |
11 changes: 11 additions & 0 deletions
11
packages/graphql/src/SearchBy/Definitions/SearchByOperatorNotEndsWithDirective.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace LastDragon_ru\LaraASP\GraphQL\SearchBy\Definitions; | ||
|
||
use LastDragon_ru\LaraASP\GraphQL\SearchBy\Operators\Comparison\NotEndsWith; | ||
|
||
class SearchByOperatorNotEndsWithDirective extends NotEndsWith { | ||
// Lighthouse loads all classes from directive namespace this leads to | ||
// 'Class "Orchestra\Testbench\TestCase" not found' error for our *Test | ||
// classes. This class required to avoid this error. | ||
} |
11 changes: 11 additions & 0 deletions
11
packages/graphql/src/SearchBy/Definitions/SearchByOperatorNotStartsWithDirective.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace LastDragon_ru\LaraASP\GraphQL\SearchBy\Definitions; | ||
|
||
use LastDragon_ru\LaraASP\GraphQL\SearchBy\Operators\Comparison\NotStartsWith; | ||
|
||
class SearchByOperatorNotStartsWithDirective extends NotStartsWith { | ||
// Lighthouse loads all classes from directive namespace this leads to | ||
// 'Class "Orchestra\Testbench\TestCase" not found' error for our *Test | ||
// classes. This class required to avoid this error. | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.