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

src/Config/Scope.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

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
Using PHP4-style constructors that are named like the class is not recommend; better use the more explicit __construct method.
Loading history...
15
}
16