12 lines
133 B
PHP
12 lines
133 B
PHP
|
<?php
|
||
|
|
||
|
namespace common\models\interfaces;
|
||
|
|
||
|
interface IMainPageInstruction
|
||
|
{
|
||
|
|
||
|
|
||
|
|
||
|
public function getViewFileName(): string;
|
||
|
}
|