Example #1
0
 /**
  */
 protected function init($account)
 {
     parent::init($account);
     if ($this->account[2] == 9) {
         $this->validators = $this->exceptionValidators;
     } else {
         $this->validators = $this->defaultValidators;
     }
 }
Example #2
0
 /**
  */
 protected function init($account)
 {
     parent::init($account);
     $this->validators = $this->account[2] == 9 ? $this->exceptionValidators : $this->defaultValidators;
 }
Example #3
0
 /**
  */
 protected function init($account)
 {
     parent::init($account);
     $this->validators = substr($this->account, 2, 2) == 99 ? $this->exceptionValidators : $this->defaultValidators;
 }
Example #4
0
 protected function init($account)
 {
     parent::init($account);
     // Die Kontonummern [..] enthalten keine führenden Nullen.
     $this->account = ltrim($this->account, "0");
 }
Example #5
0
 /**
  */
 protected function init($account)
 {
     parent::init($account);
     $this->validators = $this->account[2] == 9 ? array($this->modeF) : $this->defaultValidators;
 }