8 regels
117 B
PHP
8 regels
117 B
PHP
<?php namespace Todaymade\Daux;
|
|
|
|
interface Page
|
|
{
|
|
public function getContent();
|
|
public function display();
|
|
}
|