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

Middleware

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 1
c 2
b 0
f 0
dl 0
loc 3
wmc 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