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

SpacecraftNotFoundFallbackHandler::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 2
dl 0
loc 4
ccs 0
cts 3
cp 0
crap 2
rs 10
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 SpacecraftNotFoundFallbackHandler implements FallbackHandlerInterface
9
{
10
    public function handle(FallbackRouteException $e, GameControllerInterface $game): void
11
    {
12
        $game->addInformation($e->getMessage());
13
        $game->setViewTemplate('html/empty.twig');
14
    }
15
}
16