Completed
Branch master (a0c467)
by Tomáš
02:00
created

SomeController   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 20
rs 10
1
<?php
2
3
namespace Symplify\ControllerAutowire\Tests\HttpKernel\Controller\ControllerFinderSource;
4
5
class SomeController
6
{
7
    /**
8
     * @var SomeService
9
     */
10
    private $someService;
11
12
    public function __construct(SomeService $someService)
13
    {
14
        $this->someService = $someService;
15
    }
16
17
    /**
18
     * @return SomeService
19
     */
20
    public function getSomeService()
21
    {
22
        return $this->someService;
23
    }
24
}
25