Controller/TaskController.php gelöscht

This commit is contained in:
Mohammad Reda Mohammad 2025-09-05 12:08:05 +02:00
parent 05d6dec504
commit 2755e88291

View File

@ -1,20 +0,0 @@
<?php
namespace ppb\Controller;
use ppb\Model\TaskModel;
class TaskController {
public function __construct()
{
}
public function writeTask($data): void
{
$model = new TaskModel();
$model->insertTask($data);
}
}