-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6dc3299
commit 1481be0
Showing
2 changed files
with
46 additions
and
0 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
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 | ||
{ | ||
} |
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,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 | ||
{ | ||
} |