14 lines
328 B
PHP
14 lines
328 B
PHP
<?php
|
|
|
|
namespace Portfolio\Source\Design\Controller\Project;
|
|
|
|
use Portfolio\Source\Design\Controller\Base;
|
|
|
|
class Index extends Base
|
|
{
|
|
public function index(): void
|
|
{
|
|
// Affiche la vue portfolio/template/project/index.html dans le layout portfolio/template/base.html
|
|
$this->show('project.index');
|
|
}
|
|
} |