Completed
Push — master ( b1af7e...172619 )
by Sergii
07:37 queued 02:46
created

autocompletition.php (1 issue)

Labels
Severity
1
<?php
2
3
/**
4
 * Autocompletition for lumen/laravel applicaton with wamp
5
 */
6
7
namespace Laravel\Lumen {
8
9
    /**
10
     * Class Application
11
     * Lumen application
12
     *
13
     * @property \sonrac\WAMP\Contracts\RPCRouterInterface|\sonrac\WAMP\Contracts\RPCRouterInterface $rpcRouter
14
     * @property \sonrac\WAMP\Contracts\PubSubRouterInterface|\sonrac\WAMP\Routers\PubSubRouter      $pubSubRouter
15
     * @property \sonrac\WAMP\WAMP                                                                   $wamp       WAMP
16
     *           main extractor
17
     * @property \sonrac\WAMP\Contracts\WAMPRouterInterface|\sonrac\WAMP\Routers\Router              $wampRouter WAMP
18
     *           complex router
19
     *
20
     * @package Laravel\Lumen
21
     */
22
    class Application extends \Illuminate\Container\Container
0 ignored issues
show
The type Illuminate\Container\Container was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
23
    {
24
    }
25
}
26
27
namespace Illuminate\Foundation {
28
29
    /**
30
     * Class Application
31
     * Laravel Application
32
     *
33
     * @property \sonrac\WAMP\Contracts\RPCRouterInterface|\sonrac\WAMP\Contracts\RPCRouterInterface $rpcRouter
34
     * @property \sonrac\WAMP\Contracts\PubSubRouterInterface|\sonrac\WAMP\Routers\PubSubRouter      $pubSubRouter
35
     * @property \sonrac\WAMP\WAMP                                                                   $wamp       WAMP
36
     *           main extractor
37
     * @property \sonrac\WAMP\Contracts\WAMPRouterInterface|\sonrac\WAMP\Routers\Router              $wampRouter WAMP
38
     *           complex router
39
     *
40
     * @package Laravel\Lumen
41
     */
42
    class Application extends \Illuminate\Container\Container
43
    {
44
    }
45
}
46
47
namespace sonrac\WAMP {
48
49
    /**
50
     * Interface GroupsConfigInterface
51
     *
52
     * @property array    $middleware Middleware list
53
     * @property string   $prefix     Route prefix
54
     * @property \Closure $callback   Groups runner
55
     * @property string   $namespace  Controllers namespace
56
     *
57
     * @package sonrac\WAMP\Routers
58
     */
59
    interface GroupsConfigInterface
60
    {
61
    }
62
}
63