-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #644 from spryker-shop/feature/acp-4696/master-tax…
…-id-validation-integration ACP-4696: integration
- Loading branch information
Showing
5 changed files
with
115 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
25 changes: 25 additions & 0 deletions
25
src/Orm/Zed/TaxApp/Persistence/SpyTaxIdValidationHistory.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of the Spryker Commerce OS. | ||
* For full license information, please view the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types = 1); | ||
|
||
namespace Orm\Zed\TaxApp\Persistence; | ||
|
||
use Spryker\Zed\TaxApp\Persistence\Propel\AbstractSpyTaxIdValidationHistory as BaseSpyTaxIdValidationHistory; | ||
|
||
/** | ||
* Skeleton subclass for representing a row from the 'spy_tax_id_validation_history' table. | ||
* | ||
* | ||
* | ||
* You should add additional methods to this class to meet the | ||
* application requirements. This class will only be generated as | ||
* long as it does not already exist in the output directory. | ||
*/ | ||
class SpyTaxIdValidationHistory extends BaseSpyTaxIdValidationHistory | ||
{ | ||
} |
25 changes: 25 additions & 0 deletions
25
src/Orm/Zed/TaxApp/Persistence/SpyTaxIdValidationHistoryQuery.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of the Spryker Commerce OS. | ||
* For full license information, please view the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types = 1); | ||
|
||
namespace Orm\Zed\TaxApp\Persistence; | ||
|
||
use Spryker\Zed\TaxApp\Persistence\Propel\AbstractSpyTaxIdValidationHistoryQuery as BaseSpyTaxIdValidationHistoryQuery; | ||
|
||
/** | ||
* Skeleton subclass for performing query and update operations on the 'spy_tax_id_validation_history' table. | ||
* | ||
* | ||
* | ||
* You should add additional methods to this class to meet the | ||
* application requirements. This class will only be generated as | ||
* long as it does not already exist in the output directory. | ||
*/ | ||
class SpyTaxIdValidationHistoryQuery extends BaseSpyTaxIdValidationHistoryQuery | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters