Skip to content

Commit 43da8bc

Browse files
committed
[HttpExceptionsDev] Prepare for 2.x:
- Removed GitHub workflow; - Moved all classes to root folder; - Renamed namespace to Micro\Plugin\HttpExceptionsDev; - Removed all static analysis configuration files;
1 parent 258ce5c commit 43da8bc

22 files changed

+67
-252
lines changed

.github/workflows/.editorconfig

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

.github/workflows/ci.yaml

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

.php-cs-fixer.dist.php

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

src/Business/Exception/Renderer/HtmlRenderer.php renamed to Business/Exception/Renderer/HtmlRenderer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
* file that was distributed with this source code.
1212
*/
1313

14-
namespace Micro\Plugin\Http\Business\Exception\Renderer;
14+
namespace Micro\Plugin\HttpExceptionsDev\Business\Exception\Renderer;
1515

16-
use Micro\Plugin\Http\Exception\FlattenException;
16+
use Micro\Plugin\HttpExceptionsDev\Exception\FlattenException;
1717

1818
/**
1919
* @author Stanislau Komar <head.trackingsoft@gmail.com>

src/Business/Exception/Renderer/JsonRenderer.php renamed to Business/Exception/Renderer/JsonRenderer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
* file that was distributed with this source code.
1212
*/
1313

14-
namespace Micro\Plugin\Http\Business\Exception\Renderer;
14+
namespace Micro\Plugin\HttpExceptionsDev\Business\Exception\Renderer;
1515

16-
use Micro\Plugin\Http\Exception\FlattenException;
16+
use Micro\Plugin\HttpExceptionsDev\Exception\FlattenException;
1717

1818
/**
1919
* @author Stanislau Komar <head.trackingsoft@gmail.com>

src/Business/Exception/Renderer/RendererFactory.php renamed to Business/Exception/Renderer/RendererFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
* file that was distributed with this source code.
1212
*/
1313

14-
namespace Micro\Plugin\Http\Business\Exception\Renderer;
14+
namespace Micro\Plugin\HttpExceptionsDev\Business\Exception\Renderer;
1515

16-
use Micro\Plugin\Http\Configuration\HttpExceptionResponseDevPluginConfigurationInterface;
16+
use Micro\Plugin\HttpExceptionsDev\Configuration\HttpExceptionResponseDevPluginConfigurationInterface;
1717
use Symfony\Component\HttpFoundation\Request;
1818

1919
/**

src/Business/Exception/Renderer/RendererFactoryInterface.php renamed to Business/Exception/Renderer/RendererFactoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* file that was distributed with this source code.
1212
*/
1313

14-
namespace Micro\Plugin\Http\Business\Exception\Renderer;
14+
namespace Micro\Plugin\HttpExceptionsDev\Business\Exception\Renderer;
1515

1616
use Symfony\Component\HttpFoundation\Request;
1717

src/Business/Exception/Renderer/RendererInterface.php renamed to Business/Exception/Renderer/RendererInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* file that was distributed with this source code.
1212
*/
1313

14-
namespace Micro\Plugin\Http\Business\Exception\Renderer;
14+
namespace Micro\Plugin\HttpExceptionsDev\Business\Exception\Renderer;
1515

1616
/**
1717
* @author Stanislau Komar <head.trackingsoft@gmail.com>

src/Business/Executor/HttpExceptionPageExecutorDecorator.php renamed to Business/Executor/HttpExceptionPageExecutorDecorator.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
* file that was distributed with this source code.
1212
*/
1313

14-
namespace Micro\Plugin\Http\Business\Executor;
14+
namespace Micro\Plugin\HttpExceptionsDev\Business\Executor;
1515

16-
use Micro\Plugin\Http\Business\Exception\Renderer\RendererFactoryInterface;
17-
use Micro\Plugin\Http\Configuration\HttpExceptionResponseDevPluginConfigurationInterface;
18-
use Micro\Plugin\Http\Exception\HttpException;
16+
use Micro\Plugin\HttpExceptionsDev\Business\Exception\Renderer\RendererFactoryInterface;
17+
use Micro\Plugin\HttpExceptionsDev\Configuration\HttpExceptionResponseDevPluginConfigurationInterface;
18+
use Micro\Plugin\HttpCore\Exception\HttpException;
1919
use Symfony\Component\HttpFoundation\Request;
2020
use Symfony\Component\HttpFoundation\Response;
2121

src/Business/Executor/HttpExceptionPageExecutorDecoratorFactory.php renamed to Business/Executor/HttpExceptionPageExecutorDecoratorFactory.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@
1111
* file that was distributed with this source code.
1212
*/
1313

14-
namespace Micro\Plugin\Http\Business\Executor;
14+
namespace Micro\Plugin\HttpExceptionsDev\Business\Executor;
1515

16-
use Micro\Plugin\Http\Business\Exception\Renderer\RendererFactoryInterface;
17-
use Micro\Plugin\Http\Configuration\HttpExceptionResponseDevPluginConfigurationInterface;
16+
use Micro\Plugin\HttpExceptionsDev\Business\Exception\Renderer\RendererFactoryInterface;
17+
use Micro\Plugin\HttpExceptionsDev\Configuration\HttpExceptionResponseDevPluginConfigurationInterface;
18+
use Micro\Plugin\HttpCore\Business\Executor\RouteExecutorFactoryInterface;
1819

1920
/**
2021
* @author Stanislau Komar <head.trackingsoft@gmail.com>

0 commit comments

Comments
 (0)