14 lines
253 B
PHP
14 lines
253 B
PHP
<?php
|
|
|
|
namespace App\Containers\Dashboard\Actions\SubSections;
|
|
|
|
use App\Containers\AppStructure\Models\SubSection;
|
|
|
|
class DeleteSubSectionAction
|
|
{
|
|
public function run(SubSection $subSection): bool
|
|
{
|
|
return $subSection->delete();
|
|
}
|
|
}
|