Passed
Push — dev ( 915030...7801e0 )
by Janko
23:47 queued 09:25
created

MaintenanceFallbackHandler   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 6
ccs 0
cts 3
cp 0
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 4 1
1
<?php
2
3
namespace Stu\Module\Control\Router\Handler;
4
5
use Stu\Module\Control\GameControllerInterface;
6
use Stu\Module\Control\Router\FallbackRouteException;
7
8
class MaintenanceFallbackHandler implements FallbackHandlerInterface
9
{
10
    public function handle(FallbackRouteException $e, GameControllerInterface $game): void
11
    {
12
        $game->setPageTitle('Wartungsmodus');
13
        $game->setTemplateFile('html/index/maintenance.twig');
14
    }
15
}
16