Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ncou committed Nov 21, 2020
1 parent b3cbc3d commit 4a15d54
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 381 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"phpstan/phpstan": "^0.12.0",
"phpstan/phpstan-strict-rules": "^0.12",
"overtrue/phplint": "^2.0",
"chiron/coding-standard": "^3.0"
"chiron/coding-standard": "^3.0",
"nyholm/psr7": "^1.3"
},
"autoload": {
"psr-4": {
Expand Down
47 changes: 0 additions & 47 deletions tests/Decorator/CallableMiddlewareTest.php

This file was deleted.

122 changes: 0 additions & 122 deletions tests/Decorator/LazyLoadingMiddlewareTest.php

This file was deleted.

30 changes: 0 additions & 30 deletions tests/Decorator/RequestHandlerMiddlewareTest.php

This file was deleted.

2 changes: 1 addition & 1 deletion tests/Fixtures/EmptyMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class EmptyMiddleware implements MiddlewareInterface
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{
// do nothing simple use the previous handle to get the response.
// this class is used to test an pipeline with no returned response (because prévious $handler is the empty pipeline class).
// this class is used to test an pipeline with no returned response (because previous $handler is the empty pipeline class).
return $handler->handle($request);
}
}
161 changes: 0 additions & 161 deletions tests/PipelineBuilderTest.php

This file was deleted.

Loading

0 comments on commit 4a15d54

Please sign in to comment.