WEBD-325-45/week-06/project/libraries/src/Model/Util/HomeMenuInterface.php

25 lines
502 B
PHP
Raw Normal View History

2022-04-25 02:17:01 +00:00
<?php
/**
* @package Octoleo CMS
*
2022-04-25 02:19:51 +00:00
* @created 21th April 2022
2022-04-25 02:17:01 +00:00
* @author Llewellyn van der Merwe <https://git.vdm.dev/Llewellyn>
* @git WEBD-325-45 <https://git.vdm.dev/Llewellyn/WEBD-325-45>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
2022-04-25 02:19:51 +00:00
namespace Octoleo\CMS\Model\Util;
2022-04-25 02:17:01 +00:00
/**
2022-04-25 02:19:51 +00:00
* Class for getting the home page
2022-04-25 02:17:01 +00:00
*
* @since 1.0.0
*/
2022-04-25 02:19:51 +00:00
interface HomeMenuInterface
2022-04-25 02:17:01 +00:00
{
/**
2022-04-25 02:19:51 +00:00
* @return \stdClass
2022-04-25 02:17:01 +00:00
*/
2022-04-25 02:19:51 +00:00
public function getHomePage(): \stdClass;
2022-04-25 02:17:01 +00:00
}