Completed
Pull Request — master (#6)
by Joao
08:06
created

ClassName   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
lcom 0
cbo 0
dl 0
loc 7
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A someMethod() 0 4 1
1
<?php
0 ignored issues
show
Coding Style Compatibility introduced by
For compatibility and reusability of your code, PSR1 recommends that a file should introduce either new symbols (like classes, functions, etc.) or have side-effects (like outputting something, or including other files), but not both at the same time. The first symbol is defined on line 40 and the first side effect is on line 10.

The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.

The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.

To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.

Loading history...
2
3
namespace My;
4
5
/**
6
 * Basic Handler Object
7
 *
8
 */
9
10
require_once __DIR__ . '/../vendor/autoload.php';
11
12
$restServer = new \ByJG\RestServer\ServerRequestHandler();
13
14
$restServer->addRoute(new \ByJG\RestServer\RoutePattern(
15
    'GET',
16
    '/test',
17
    \ByJG\RestServer\HandleOutput\JsonHandler::class,
18
    'someMethod',
19
    \My\ClassName::class
20
));
21
22
$restServer->addRoute(new \ByJG\RestServer\RoutePattern(
23
    'GET',
24
    '/testclosure',
25
    \ByJG\RestServer\HandleOutput\JsonHandler::class,
26
    function ($request, $response) {
27
        $response->write('OK');
28
    }
29
));
30
31
$restServer->handle();
32
33
/**
34
 * Class ClassName
35
 *
36
 * This is an example class for process the request
37
 *
38
 * @package My
39
 */
40
class ClassName
41
{
42
    public function someMethod($request, $response)
0 ignored issues
show
Unused Code introduced by
The parameter $request is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
43
    {
44
        $response->write('It worked');
45
    }
46
}