Test Failed
Branch master (fdda4e)
by ANTHONIUS
03:39
created

UpdateProfileController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
eloc 1
c 1
b 1
f 0
dl 0
loc 4
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 2 1
1
<?php
2
3
/*
4
 * This file is part of the EOffice project.
5
 *
6
 * (c) Anthonius Munthi <https://itstoni.com>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
14
namespace EOffice\User\Controller;
15
16
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
17
18
class UpdateProfileController extends AbstractController
19
{
20
    public function __invoke(string $userId)
21
    {
22
    }
23
}
24