| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 111 | public function __construct(array $param = []) |
||
| 112 | { |
||
| 113 | parent::__construct($param); |
||
| 114 | $this->rules = [ |
||
| 115 | 'address' => 'required', |
||
| 116 | 'code' => 'numeric', |
||
| 117 | 'fias_guid' => 'alpha', |
||
| 118 | 'postal_code' => 'alpha_num', |
||
| 119 | 'longitude' => 'numeric', |
||
| 120 | 'latitude' => 'numeric', |
||
| 121 | 'country_code' => 'alpha:2', |
||
| 122 | 'region' => 'alpha', |
||
| 123 | 'sub_region' => 'alpha', |
||
| 124 | 'city' => 'alpha', |
||
| 125 | 'kladr_code' => 'alpha', |
||
| 126 | ]; |
||
| 129 |