Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
90.00% covered (success)
90.00%
9 / 10
87.50% covered (warning)
87.50%
7 / 8
CRAP
0.00% covered (danger)
0.00%
0 / 1
DashboardRouteDefinition
90.00% covered (success)
90.00%
9 / 10
87.50% covered (warning)
87.50%
7 / 8
8.06
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getMethod
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getUrl
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getController
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getRouteAttributes
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
1
 getOperationId
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getAction
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getUrlPrefixes
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\Cms\RouteDefinitions;
3
4use Apie\Cms\Controllers\DashboardController;
5use Apie\Common\Actions\GetListAction;
6use Apie\Common\Enums\UrlPrefix;
7use Apie\Common\Interfaces\HasRouteDefinition;
8use Apie\Common\Lists\UrlPrefixList;
9use Apie\Core\BoundedContext\BoundedContextId;
10use Apie\Core\ContextConstants;
11use Apie\Core\Enums\RequestMethod;
12use Apie\Core\ValueObjects\UrlRouteDefinition;
13
14class DashboardRouteDefinition implements HasRouteDefinition
15{
16    public function __construct(private readonly BoundedContextId $id)
17    {
18    }
19
20    public function getMethod(): RequestMethod
21    {
22        return RequestMethod::GET;
23    }
24
25    public function getUrl(): UrlRouteDefinition
26    {
27        return new UrlRouteDefinition('/');
28    }
29    /**
30     * @return class-string<object>
31     */
32    public function getController(): string
33    {
34        return DashboardController::class;
35    }
36    /**
37     * @return array<string, mixed>
38     */
39    public function getRouteAttributes(): array
40    {
41        return [
42            ContextConstants::BOUNDED_CONTEXT_ID => $this->id->toNative(),
43        ];
44    }
45    public function getOperationId(): string
46    {
47        return 'cms.dashboard';
48    }
49
50    public function getAction(): string
51    {
52        return GetListAction::class;
53    }
54
55    public function getUrlPrefixes(): UrlPrefixList
56    {
57        return new UrlPrefixList([UrlPrefix::CMS]);
58    }
59}