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

Scope::scope()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
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