Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand Down
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
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