Example #1
0
 /**
  * @throws ValidatorOutOfBoundsException
  * @param int $int
  */
 protected function normalizeAccount($size)
 {
     parent::normalizeAccount($size);
     if (substr($this->account, 0, 4) !== '0000') {
         $this->account = '0000' . substr($this->account, 0, 6);
     }
 }