for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace phoponent\app\component\custom\HomeTitle\mvc\model;
use phoponent\framework\traits\model;
class Title extends \phoponent\app\component\core\HomeTitle\mvc\model\Title {
use model;
public function get_title($title) {
return is_null($title) ? 'Accueil' : $title;
}