AJenbo/agcms

View on GitHub
application/inc/Contracts/Renderable.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace App\Contracts;

interface Renderable
{
    /**
     * Get page title.
     */
    public function getTitle(): string;

    /**
     * Get page link.
     */
    public function getCanonicalLink(): string;
}