8 lignes
109 B
PHP
8 lignes
109 B
PHP
|
<?php namespace Todaymade\Daux;
|
||
|
|
||
|
interface Page
|
||
|
{
|
||
|
function get_page_content();
|
||
|
function display();
|
||
|
}
|