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
1,414 changes: 865 additions & 549 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"eslint-plugin-standard": "^5.0",
"node-sass": "^8.0",
"webpack": "^5.77",
"webpack-cli": "^5.0"
"webpack-cli": "^6.0"
},
"scripts": {
"prepublish": "npm run build",
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