Skip to content

Commit

Permalink
set codeCoverageIgnore
Browse files Browse the repository at this point in the history
  • Loading branch information
bvlion committed Aug 7, 2024
1 parent 488ac45 commit e576924
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Application/Actions/ActionError.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

use JsonSerializable;

/**
* @codeCoverageIgnore
*/
class ActionError implements JsonSerializable
{
public const BAD_REQUEST = 'BAD_REQUEST';
Expand Down
3 changes: 3 additions & 0 deletions src/Application/Actions/ActionPayload.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

use JsonSerializable;

/**
* @codeCoverageIgnore
*/
class ActionPayload implements JsonSerializable
{
private int $statusCode;
Expand Down
3 changes: 3 additions & 0 deletions src/Application/Handlers/HttpErrorHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
use Slim\Handlers\ErrorHandler as SlimErrorHandler;
use Throwable;

/**
* @codeCoverageIgnore
*/
class HttpErrorHandler extends SlimErrorHandler
{
/**
Expand Down
3 changes: 3 additions & 0 deletions src/Application/Handlers/ShutdownHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
use Psr\Http\Message\ServerRequestInterface as Request;
use Slim\Exception\HttpInternalServerErrorException;

/**
* @codeCoverageIgnore
*/
class ShutdownHandler
{
private Request $request;
Expand Down
3 changes: 3 additions & 0 deletions src/Application/ResponseEmitter/ResponseEmitter.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
use Psr\Http\Message\ResponseInterface;
use Slim\ResponseEmitter as SlimResponseEmitter;

/**
* @codeCoverageIgnore
*/
class ResponseEmitter extends SlimResponseEmitter
{
/**
Expand Down

0 comments on commit e576924

Please sign in to comment.