ProxyableBy
last analyzed

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 5

1 Method

Rating   Name   Duplication   Size   Complexity  
by() 0 1 ?
1
<?php
2
/*
3
 * This file is part of the Respect\Rest package.
4
 *
5
 * For the full copyright and license information, please view the LICENSE
6
 * file that was distributed with this source code.
7
 */
8
9
namespace Respect\Rest\Routines;
10
11
use Respect\Rest\Request;
12
13
/** Routine that runs before the route */
14
interface ProxyableBy
15
{
16
    /** Executed before the route */
17
    public function by(Request $request, $params);
18
}
19