Completed
Push — master ( f172d4...76e139 )
by devosc
02:14
created

Scope

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
scope() 0 1 ?
1
<?php
2
/**
3
 *
4
 */
5
6
namespace Mvc5\Config;
7
8
interface Scope
9
{
10
    /**
11
     * @param null|object $scope
12
     * @return null|object
13
     */
14
    function scope($scope = null);
0 ignored issues
show
Best Practice introduced by
Using PHP4-style constructors that are named like the class is not recommend; better use the more explicit __construct method.
Loading history...
15
}
16