12 lines
139 B
PHP
12 lines
139 B
PHP
<?php
|
|
|
|
|
|
namespace app\models\parsed;
|
|
|
|
|
|
interface Page
|
|
{
|
|
public function headerImage($rez = null);
|
|
public function headerTitle();
|
|
}
|