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 Main extends xphp_tag {
public function render():string {
return $this->get_view('Main')
->set_vars([
'title' => $this->attribute('title')
])->render();
}