diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Query/AST/Phase2OptimizableConditional.php')
| -rw-r--r-- | vendor/doctrine/orm/src/Query/AST/Phase2OptimizableConditional.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Query/AST/Phase2OptimizableConditional.php b/vendor/doctrine/orm/src/Query/AST/Phase2OptimizableConditional.php new file mode 100644 index 0000000..276f8f8 --- /dev/null +++ b/vendor/doctrine/orm/src/Query/AST/Phase2OptimizableConditional.php | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | <?php | ||
| 2 | |||
| 3 | declare(strict_types=1); | ||
| 4 | |||
| 5 | namespace Doctrine\ORM\Query\AST; | ||
| 6 | |||
| 7 | /** | ||
| 8 | * Marks types that can be used in place of a ConditionalExpression as a phase | ||
| 9 | * 2 optimization. | ||
| 10 | * | ||
| 11 | * @internal | ||
| 12 | * | ||
| 13 | * @psalm-inheritors ConditionalPrimary|ConditionalFactor|ConditionalTerm | ||
| 14 | */ | ||
| 15 | interface Phase2OptimizableConditional | ||
| 16 | { | ||
| 17 | } | ||
