Skip to content

Commit 0eb96d9

Browse files
committed
[PluginHttpLogger] Prepare for 2.x:
- Removed GitHub workflow; - Removed static analysis configuration files; - Moved all classes to root folder; - Renamed namespace to Micro\Plugin\HttpLogger;
1 parent bd91f9b commit 0eb96d9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+129
-282
lines changed

.github/workflows/.editorconfig

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

.github/workflows/ci.yaml

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

.php-cs-fixer.dist.php

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

src/Business/Executor/HttpExecutorLoggerAwareDecorator.php renamed to Business/Executor/HttpExecutorLoggerAwareDecorator.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\HttpLogger\Business\Executor;
1515

16-
use Micro\Plugin\Http\Business\Logger\Formatter\LogFormatterInterface;
17-
use Micro\Plugin\Http\Exception\HttpException;
16+
use Micro\Plugin\HttpCore\Business\Executor\RouteExecutorInterface;
17+
use Micro\Plugin\HttpLogger\Business\Logger\Formatter\LogFormatterInterface;
18+
use Micro\Plugin\HttpCore\Exception\HttpException;
1819
use Psr\Log\LoggerInterface;
1920
use Symfony\Component\HttpFoundation\Request;
2021
use Symfony\Component\HttpFoundation\Response;

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

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

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

16-
use Micro\Plugin\Http\Business\Logger\Formatter\LogFormatterFactoryInterface;
17-
use Micro\Plugin\Http\HttpLoggerPluginConfigurationInterface;
16+
use Micro\Plugin\HttpCore\Business\Executor\RouteExecutorFactoryInterface;
17+
use Micro\Plugin\HttpCore\Business\Executor\RouteExecutorInterface;
18+
use Micro\Plugin\HttpLogger\Business\Logger\Formatter\LogFormatterFactoryInterface;
19+
use Micro\Plugin\HttpLogger\HttpLoggerPluginConfigurationInterface;
1820
use Micro\Plugin\Logger\Facade\LoggerFacadeInterface;
1921

2022
/**

src/Business/Logger/Formatter/Format/AbstractFormat.php renamed to Business/Logger/Formatter/Format/AbstractFormat.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\Logger\Formatter\Format;
14+
namespace Micro\Plugin\HttpLogger\Business\Logger\Formatter\Format;
1515

1616
use Symfony\Component\HttpFoundation\Request;
1717
use Symfony\Component\HttpFoundation\Response;

src/Business/Logger/Formatter/Format/AbstractHeaderFormatter.php renamed to Business/Logger/Formatter/Format/AbstractHeaderFormatter.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\Logger\Formatter\Format;
14+
namespace Micro\Plugin\HttpLogger\Business\Logger\Formatter\Format;
1515

1616
use Symfony\Component\HttpFoundation\Request;
1717
use Symfony\Component\HttpFoundation\Response;

src/Business/Logger/Formatter/Format/HeadersRequestFormatter.php renamed to Business/Logger/Formatter/Format/HeadersRequestFormatter.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\Logger\Formatter\Format;
14+
namespace Micro\Plugin\HttpLogger\Business\Logger\Formatter\Format;
1515

1616
use Symfony\Component\HttpFoundation\Request;
1717
use Symfony\Component\HttpFoundation\Response;

src/Business/Logger/Formatter/Format/IpFormat.php renamed to Business/Logger/Formatter/Format/IpFormat.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\Logger\Formatter\Format;
14+
namespace Micro\Plugin\HttpLogger\Business\Logger\Formatter\Format;
1515

1616
use Symfony\Component\HttpFoundation\Request;
1717
use Symfony\Component\HttpFoundation\Response;

src/Business/Logger/Formatter/Format/LogFormatterConcreteInterface.php renamed to Business/Logger/Formatter/Format/LogFormatterConcreteInterface.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\Logger\Formatter\Format;
14+
namespace Micro\Plugin\HttpLogger\Business\Logger\Formatter\Format;
1515

16-
use Micro\Plugin\Http\Business\Logger\Formatter\LogFormatterInterface;
16+
use Micro\Plugin\HttpLogger\Business\Logger\Formatter\LogFormatterInterface;
1717
use Symfony\Component\HttpFoundation\Request;
1818
use Symfony\Component\HttpFoundation\Response;
1919

0 commit comments

Comments
 (0)