Completed
Push — master ( db7db7...b603ad )
by Mathieu
07:07 queued 05:18
created

Middleware::call()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 1
dl 0
loc 1
rs 10
c 0
b 0
f 0
1
<?php
2
namespace Suricate;
3
4
abstract class Middleware implements \Suricate\Interfaces\IMiddleware
5
{
6
    abstract function call(Request &$request, Request &$reponse);
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
7
}
8