-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged in release/ZZ01-148-release-3.3.0 (pull request #144)
Release/ZZ01-148 release 3.3.0
- Loading branch information
Showing
51 changed files
with
1,134 additions
and
151 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,6 @@ | ||
/demo export-ignore | ||
/make export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
bitbucket-pipelines.yml export-ignore | ||
Makefile.dist export-ignore |
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
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
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.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
15 changes: 15 additions & 0 deletions
15
src/Orba/Magento2Codegen/Exception/ValueInvalidException.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,15 @@ | ||
<?php | ||
|
||
/** | ||
* @copyright Copyright © 2022 Orba. All rights reserved. | ||
* @author info@orba.co | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Orba\Magento2Codegen\Exception; | ||
|
||
class ValueInvalidException extends \InvalidArgumentException | ||
{ | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
src/Orba/Magento2Codegen/Exception/ValueNotAllowedException.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,15 @@ | ||
<?php | ||
|
||
/** | ||
* @copyright Copyright © 2022 Orba. All rights reserved. | ||
* @author info@orba.co | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Orba\Magento2Codegen\Exception; | ||
|
||
class ValueNotAllowedException extends \InvalidArgumentException | ||
{ | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
src/Orba/Magento2Codegen/Exception/ValueNotSetException.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,15 @@ | ||
<?php | ||
|
||
/** | ||
* @copyright Copyright © 2022 Orba. All rights reserved. | ||
* @author info@orba.co | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Orba\Magento2Codegen\Exception; | ||
|
||
class ValueNotSetException extends \InvalidArgumentException | ||
{ | ||
|
||
} |
Oops, something went wrong.