* @git WEBD-325-45 * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Sport\Stars\Controller; use Joomla\Controller\AbstractController; use Laminas\Diactoros\Response\TextResponse; use Sport\Stars\Application\SiteApplication; /** * Controller class to display a message to individuals looking for the wrong CMS * * @method SiteApplication getApplication() Get the application object. * @property-read SiteApplication $app Application object */ class WrongCmsController extends AbstractController { /** * Execute the controller. * * @return boolean */ public function execute(): bool { // Enable browser caching $this->getApplication()->allowCache(true); $response = new TextResponse("This isn't the what you're looking for.", 404); $this->getApplication()->setResponse($response); return true; } }