Blame view

src/lib/models/orderRequest.php 303 Bytes
ef60cd4d   Administrator   first commit
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
28
  <?php
  
  
  class orderRequest extends \Phalcon\Mvc\Model
  {
      public $url;
      public $name;
      public $email;
      public $phone;
      public $comment;
      public $services;
  
      public function getSource()
      {
          return "order_request";
      }
  
  
      public function initialize()
      {
  
      }
  
  
  
  
  
  }