Console Tool Refactoring

This commit is contained in:
2023-07-26 18:21:51 +02:00
parent b5836f4ae9
commit 10d7b09c5f
36 changed files with 1605 additions and 427 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace App\Actions;
enum Action: string
{
case PLUS = 'plus';
case MINUS = 'minus';
case MULTIPLY = 'multiply';
case DIVISION = 'division';
}