Completed
Push — master ( f378fd...239fb4 )
by Sergii
17:07 queued 12:17
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
     * @property \sonrac\WAMP\Client                                                                 $wampClient Wamp
20
     *           client
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
    class Application extends \Illuminate\Container\Container
41
    {
42
    }
43
}
44
45
namespace sonrac\WAMP {
46
47
    /**
48
     * Interface GroupsConfigInterface.
49
     *
50
     * @property array    $middleware Middleware list
51
     * @property string   $prefix     Route prefix
52
     * @property \Closure $callback   Groups runner
53
     * @property string   $namespace  Controllers namespace
54
     */
55
    interface GroupsConfigInterface
56
    {
57
    }
58
}
59