| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Ui\V1; |
| 6: | |
| 7: | /** |
| 8: | * The trend of a value |
| 9: | */ |
| 10: | enum TrendType: int |
| 11: | { |
| 12: | case StrongUp = 1; |
| 13: | case Up = 2; |
| 14: | case Sideways = 3; |
| 15: | case Down = 4; |
| 16: | case StrongDown = 5; |
| 17: | } |
| 18: |