31 lines
689 B
PHP
31 lines
689 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Nischcodes\Shiftcalc\App\View;
|
|
|
|
/**
|
|
* HomeView
|
|
*
|
|
* main view for this application
|
|
*
|
|
* PHP version 8.4 or higher
|
|
*
|
|
* LICENSE: GPL-3
|
|
*
|
|
* @package ShiftCalc
|
|
* @author nisch.codes <nischcodes@noreply.projects.nisch.codes>
|
|
* @copyright 2021 nisch.codes
|
|
* @license https://projects.nisch.codes/nischcodes/shiftcalc/src/branch/main/LICENSE GPL-3
|
|
* @version 1.0.0
|
|
* @link https://projects.nisch.codes/nischcodes/shiftcalc
|
|
*/
|
|
|
|
use Nischcodes\Shiftcalc\MVC\BaseView;
|
|
|
|
class HomeView implements BaseView {
|
|
|
|
// implement the render function
|
|
public function render($data) {
|
|
echo "HomeView render";
|
|
}
|
|
|
|
} |