Skip to content

Commit

Permalink
CC-30653: validation updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
romanhavrylko committed Aug 31, 2023
1 parent 6dc3299 commit 1481be0
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/Orm/Zed/ApiKey/Persistence/SpyApiKey.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?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.
*/

namespace Orm\Zed\ApiKey\Persistence;

use Spryker\Zed\ApiKey\Persistence\Propel\AbstractSpyApiKey as BaseSpyApiKey;

/**
* Skeleton subclass for representing a row from the 'spy_api_key' 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 SpyApiKey extends BaseSpyApiKey
{
}
23 changes: 23 additions & 0 deletions src/Orm/Zed/ApiKey/Persistence/SpyApiKeyQuery.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?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.
*/

namespace Orm\Zed\ApiKey\Persistence;

use Spryker\Zed\ApiKey\Persistence\Propel\AbstractSpyApiKeyQuery as BaseSpyApiKeyQuery;

/**
* Skeleton subclass for performing query and update operations on the 'spy_api_key' 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 SpyApiKeyQuery extends BaseSpyApiKeyQuery
{
}

0 comments on commit 1481be0

Please sign in to comment.