changes
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Containers\Dashboard\Actions\Posts;
|
||||
|
||||
use App\Containers\Dashboard\Tasks\Posts\GetPostFormDataTask;
|
||||
|
||||
class GetPostFormDataAction
|
||||
{
|
||||
public function __construct(
|
||||
private readonly GetPostFormDataTask $getPostFormDataTask,
|
||||
) {}
|
||||
|
||||
public function run(): array
|
||||
{
|
||||
return $this->getPostFormDataTask->run();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user