feat: Initialize core application structure including authentication, role-based dashboards, service task management, and integration workflows.
This commit is contained in:
18
app/States/ServiceTask/CompletedState.php
Normal file
18
app/States/ServiceTask/CompletedState.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\States\ServiceTask;
|
||||
|
||||
use App\Enums\ServiceTaskStatus;
|
||||
|
||||
class CompletedState extends ServiceTaskState
|
||||
{
|
||||
public function status(): ServiceTaskStatus
|
||||
{
|
||||
return ServiceTaskStatus::Completed;
|
||||
}
|
||||
|
||||
protected function allowedTransitions(): array
|
||||
{
|
||||
return [];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user