16 lines
314 B
PHP
16 lines
314 B
PHP
<?php
|
|
|
|
|
|
namespace app\models\parsed;
|
|
|
|
interface ArticleParsedInterface
|
|
{
|
|
public function id();
|
|
public function title($lg = null);
|
|
public function text();
|
|
public function textShort();
|
|
public function image($rez = null);
|
|
public function images($rez = null);
|
|
public function relation();
|
|
}
|