Completed
Push — 8.0 ( f611ca...d4f954 )
by David
03:13
created

TestAction   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
lcom 0
cbo 0
dl 0
loc 9
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A myAction() 0 3 1
1
<?php
2
3
namespace Mouf\Mvc\Splash\Fixtures;
4
5
use Mouf\Mvc\Splash\Annotations\Action;
6
use Mouf\Mvc\Splash\Annotations\Delete;
7
use Mouf\Mvc\Splash\Annotations\Get;
8
use Mouf\Mvc\Splash\Annotations\Post;
9
use Mouf\Mvc\Splash\Annotations\Put;
10
use Mouf\Mvc\Splash\Annotations\Title;
11
use Psr\Http\Message\ServerRequestInterface;
12
use Zend\Diactoros\Response\JsonResponse;
13
use Mouf\Mvc\Splash\Annotations\URL;
14
15
class TestAction
16
{
17
    /**
18
     * @Action
19
     */
20
    public function myAction()
21
    {
22
    }
23
}
24