for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace phoponent\app\component\core;
use phoponent\framework\classe\xphp_tag;
class HomeTitle extends xphp_tag {
public function render(): string {
$title = $this->get_model('Title')
->get_title($this->attribute('title'));
return $this->get_view('HomeTitle')
->set_vars([
'title' => $title,
])->render();
}