Skip to content

Commit 3b6ef87

Browse files
committed
Apply fixes from StyleCI
1 parent 94b960b commit 3b6ef87

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/IdValidator.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class IdValidator
1414
private $_constellationList = [];
1515
private $_chineseZodiacList = [];
1616

17-
1817
/**
1918
* IdValidator constructor.
2019
*/
@@ -23,7 +22,7 @@ public function __construct()
2322
$addressCodeList = include __DIR__.'/../data/addressCode.php';
2423
$abandonedAddressCodeList = include __DIR__.'/../data/abandonedAddressCode.php';
2524
$this->_abandonedAddressCodeList = $abandonedAddressCodeList;
26-
$this->_addressCodeList =$addressCodeList + $abandonedAddressCodeList;
25+
$this->_addressCodeList = $addressCodeList + $abandonedAddressCodeList;
2726
$this->_constellationList = include __DIR__.'/../data/constellation.php';
2827
$this->_chineseZodiacList = include __DIR__.'/../data/chineseZodiac.php';
2928
}

0 commit comments

Comments
 (0)