Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bin/clear-config-cache.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* Script for clearing the configuration cache.
*
Expand Down
29 changes: 19 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"eslint-config-standard": "^17.0",
"eslint-plugin-import": "^2.27",
"eslint-plugin-node": "^11.1",
"eslint-plugin-promise": "^6.1",
"eslint-plugin-promise": "^7.2",
"eslint-plugin-standard": "^5.0",
"node-sass": "^8.0",
"webpack": "^5.77",
Expand Down
2 changes: 1 addition & 1 deletion src/App/Handler/ClassHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ClassHandler implements RequestHandlerInterface

public function __construct(
Router\RouterInterface $router,
Template\TemplateRendererInterface $template = null,
?Template\TemplateRendererInterface $template = null,
string $containerName
) {
$this->router = $router;
Expand Down
2 changes: 1 addition & 1 deletion src/App/Handler/LabelHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class LabelHandler implements RequestHandlerInterface

public function __construct(
Router\RouterInterface $router,
Template\TemplateRendererInterface $template = null,
?Template\TemplateRendererInterface $template = null,
string $containerName
) {
$this->router = $router;
Expand Down
2 changes: 1 addition & 1 deletion src/App/Handler/LayerHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class LayerHandler implements RequestHandlerInterface

public function __construct(
Router\RouterInterface $router,
Template\TemplateRendererInterface $template = null,
?Template\TemplateRendererInterface $template = null,
string $containerName
) {
$this->router = $router;
Expand Down
2 changes: 1 addition & 1 deletion src/App/Handler/MapFileHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class MapFileHandler implements RequestHandlerInterface

public function __construct(
Router\RouterInterface $router,
Template\TemplateRendererInterface $template = null,
?Template\TemplateRendererInterface $template = null,
string $containerName
) {
$this->router = $router;
Expand Down
2 changes: 1 addition & 1 deletion src/App/Handler/MapHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class MapHandler implements RequestHandlerInterface

public function __construct(
Router\RouterInterface $router,
Template\TemplateRendererInterface $template = null,
?Template\TemplateRendererInterface $template = null,
string $containerName
) {
$this->router = $router;
Expand Down
2 changes: 1 addition & 1 deletion src/App/Handler/OpenHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class OpenHandler implements RequestHandlerInterface

public function __construct(
Router\RouterInterface $router,
Template\TemplateRendererInterface $template = null,
?Template\TemplateRendererInterface $template = null,
string $containerName
) {
$this->router = $router;
Expand Down
2 changes: 1 addition & 1 deletion src/App/Handler/StyleHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class StyleHandler implements RequestHandlerInterface

public function __construct(
Router\RouterInterface $router,
Template\TemplateRendererInterface $template = null,
?Template\TemplateRendererInterface $template = null,
string $containerName
) {
$this->router = $router;
Expand Down
Loading