Console Tool Refactoring
This commit is contained in:
@@ -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';
|
||||
}
|
||||
Reference in New Issue
Block a user