alecgunnar/Maverick

View on GitHub
src/View/NotFoundView.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Maverick\View;

class NotFoundView extends DefaultView
{
    public function getTitle(): string
    {
        return 'Page Not Found';
    }

    public function getContent(): string
    {
        return 'The page you are looking for was not found.';
    }
}