Created more unit tests

This commit is contained in:
Alejandro Celaya
2020-05-01 11:57:46 +02:00
parent 3232ab401f
commit b5947d1642
3 changed files with 90 additions and 1 deletions

View File

@@ -21,7 +21,7 @@ abstract class AbstractRestAction implements RequestHandlerInterface, RequestMet
public function __construct(?LoggerInterface $logger = null)
{
$this->logger = $logger ?: new NullLogger();
$this->logger = $logger ?? new NullLogger();
}
public static function getRouteDef(array $prevMiddleware = [], array $postMiddleware = []): array