예제 #1
0
파일: Validator.php 프로젝트: tpweb/vat
 public function isVat($value)
 {
     $vat = new Vat($value);
     return $vat->isVatValid();
 }
예제 #2
0
파일: VatTest.php 프로젝트: tpweb/vat
 public function testValidatorVat()
 {
     $validator = new Vat("BE0653.855.818");
     $this->assertTrue($validator->isVatValid());
 }