Add missing extend to PageInterface

This commit is contained in:
Matias Griese 2019-03-05 15:40:34 +02:00
parent 4e03f19bac
commit 5008672a48

View File

@ -14,6 +14,6 @@ use Grav\Common\Media\Interfaces\MediaInterface;
/**
* Class implements page interface.
*/
interface PageInterface extends PageContentInterface, PageRoutableInterface, MediaInterface, PageLegacyInterface
interface PageInterface extends PageContentInterface, PageRoutableInterface, PageTranslateInterface, MediaInterface, PageLegacyInterface
{
}