Skip to content

Commit 5ed6335

Browse files
authored
Merge pull request #120 from firegento/refactoring-2022
Refactoring for version 2.0
2 parents db37568 + f7685ce commit 5ed6335

32 files changed

+742
-1248
lines changed

.all-contributorsrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,15 @@
117117
"contributions": [
118118
"doc"
119119
]
120+
},
121+
{
122+
"login": "sprankhub",
123+
"name": "Simon Sprankel",
124+
"avatar_url": "https://avatars.githubusercontent.com/u/930199?v=4",
125+
"profile": "https://github.com/sprankhub",
126+
"contributions": [
127+
"code"
128+
]
120129
}
121130
],
122131
"contributorsPerLine": 7

Exception/ImportException.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
/**
3+
* @copyright © 2016 - 2022 FireGento e.V. - All rights reserved.
4+
* @license https://opensource.org/licenses/GPL-3.0 GPL-3
5+
*/
6+
7+
declare(strict_types=1);
8+
9+
namespace FireGento\FastSimpleImport\Exception;
10+
11+
class ImportException extends \Exception
12+
{
13+
14+
}

Exception/RuntimeException.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
/**
3+
* @copyright © 2016 - 2022 FireGento e.V. - All rights reserved.
4+
* @license https://opensource.org/licenses/GPL-3.0 GPL-3
5+
*/
6+
7+
declare(strict_types=1);
8+
9+
namespace FireGento\FastSimpleImport\Exception;
10+
11+
use Magento\Framework\Exception\LocalizedException;
12+
13+
class RuntimeException extends LocalizedException
14+
{
15+
16+
}

Exception/ValidationException.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
/**
3+
* @copyright © 2016 - 2022 FireGento e.V. - All rights reserved.
4+
* @license https://opensource.org/licenses/GPL-3.0 GPL-3
5+
*/
6+
7+
declare(strict_types=1);
8+
9+
namespace FireGento\FastSimpleImport\Exception;
10+
11+
class ValidationException extends \Exception
12+
{
13+
14+
}

Helper/Config.php

Lines changed: 0 additions & 81 deletions
This file was deleted.

Helper/ImportError.php

Lines changed: 0 additions & 167 deletions
This file was deleted.

0 commit comments

Comments
 (0)