1 | <?php |
||
10 | class UserWebhooks extends AbstractModel |
||
11 | { |
||
12 | /** |
||
13 | * |
||
14 | * @var integer |
||
15 | */ |
||
16 | public $id; |
||
17 | |||
18 | /** |
||
19 | * |
||
20 | * @var integer |
||
21 | */ |
||
22 | public $webhooks_id; |
||
|
|||
23 | |||
24 | /** |
||
25 | * |
||
26 | * @var integer |
||
27 | */ |
||
28 | public $apps_id; |
||
29 | |||
30 | /** |
||
31 | * |
||
32 | * @var integer |
||
33 | */ |
||
34 | public $users_id; |
||
35 | |||
36 | /** |
||
37 | * |
||
38 | * @var integer |
||
39 | */ |
||
40 | public $companies_id; |
||
41 | |||
42 | /** |
||
43 | * |
||
44 | * @var string |
||
45 | */ |
||
46 | public $url; |
||
47 | |||
48 | /** |
||
49 | * |
||
50 | * @var string |
||
51 | */ |
||
52 | public $method; |
||
53 | |||
54 | /** |
||
55 | * |
||
56 | * @var string |
||
57 | */ |
||
58 | public $format; |
||
59 | |||
60 | /** |
||
61 | * |
||
62 | * @var integer |
||
63 | */ |
||
64 | public $is_deleted; |
||
65 | |||
66 | /** |
||
67 | * |
||
68 | * @var string |
||
69 | */ |
||
70 | public $created_at; |
||
71 | |||
72 | /** |
||
73 | * |
||
74 | * @var string |
||
75 | */ |
||
76 | public $updated_at; |
||
77 | |||
78 | /** |
||
79 | * Initialize method for model. |
||
80 | */ |
||
81 | public function initialize() |
||
113 | |||
114 | /** |
||
115 | * Returns table name mapped in the model. |
||
116 | * |
||
117 | * @return string |
||
118 | */ |
||
119 | public function getSource(): string |
||
123 | |||
124 | /** |
||
125 | * Validate input data. |
||
126 | * |
||
127 | * @return void |
||
128 | */ |
||
129 | public function validation() |
||
144 | |||
145 | /** |
||
146 | * Get element by Id. |
||
147 | * |
||
148 | * @return Webhooks |
||
149 | */ |
||
150 | public static function getById($id): self |
||
161 | } |
||
162 |
This check examines a number of code elements and verifies that they conform to the given naming conventions.
You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.