Initial commit: new project structure and scripts

This commit is contained in:
MosLaptop\Not.Reda
2025-08-29 11:14:49 +02:00
parent 69dd02eb91
commit 75c6cc2a74
14 changed files with 180 additions and 225 deletions

View File

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