Premier commit

This commit is contained in:
2024-09-09 10:22:45 +02:00
commit bcc2604080
74 changed files with 25819 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace app\modules\site\controllers;
use Throwable;
class DefaultController extends \Piko\Controller
{
public function errorAction(Throwable $exception)
{
return $this->render('error', [
'exception' => $exception
]);
}
}