OXID eShop CE  4.9.6
 All Classes Files Functions Variables Pages
oxcompanyvatinchecker.php
Go to the documentation of this file.
1 <?php
2 
7 abstract class oxCompanyVatInChecker
8 {
9 
15  protected $_sError = '';
16 
22  public function setError($sError)
23  {
24  $this->_sError = $sError;
25  }
26 
32  public function getError()
33  {
34  return $this->_sError;
35  }
36 
44  abstract public function validate(oxCompanyVatIn $oVatIn);
45 }