Blame view

artweb/artbox-core/models/interfaces/AliasInterface.php 605 Bytes
326af919   mzavalniuk   add artbox-core t...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  <?php
      
      namespace artbox\core\models\interfaces;
      
      /**
       * Interface AliasInterface
       *
       * @package artbox\core\models\interfaces
       */
      interface AliasInterface
      {
          public function getFields(): string;
          
          public function getSeoText(): string;
          
          public function getId();
          
          public function getTitle(): string;
          
          public function getDesc(): string;
          
          public function getH1(): string;
          
          public function getText(): string;
          
          public function getRobots(): string;
      }