Blame view

frontend/microdata/test2.php 304 Bytes
cfb947e6   alex   Микроданные для у...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <?php
  namespace frontend\microdata;
  /**
   * Created by PhpStorm.
   * User: alex
   * Date: 15.06.18
   * Time: 14:38
   */
  
  
  class test2
  {
      public $name2='Jack';
      public $sorname2='Daniels';
  
  
      public  function getData2()
      {
          return ['name2'=>$this->name2,'sorname2'=>$this->sorname2];
      }
  }