9 lines
98 B
PHP
9 lines
98 B
PHP
<?php
|
|
class HomeController{
|
|
|
|
public function showPage(){
|
|
echo 'Home page';
|
|
}
|
|
}
|
|
?>
|