1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Protocol\Planning\Expression;
6:
7: enum LambdaOperator
8: {
9: case Any;
10: case All;
11: }
12: