Completed
Push — master ( 0208a5...856b62 )
by Sergii
14:09 queued 08:34
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\Routers\RPCRouter       $rpcRouter
14
     * @property \sonrac\WAMP\Contracts\PubSubRouterInterface|\sonrac\WAMP\Routers\PubSubRouter $pubSubRouter
15
     * @property \sonrac\WAMP\Contracts\WAMPRouterInterface|\sonrac\WAMP\Routers\Router         $wampRouter
16
     *           WAMP complex router
17
     * @property \sonrac\WAMP\Client                                                            $wampClient
18
     *           Wamp client
19
     */
20
    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...
21
    {
22
    }
23
}
24
25
namespace Illuminate\Foundation {
26
27
    /**
28
     * Class Application
29
     * Laravel Application.
30
     *
31
     * @property \sonrac\WAMP\Contracts\RPCRouterInterface|\sonrac\WAMP\Contracts\RPCRouterInterface $rpcRouter
32
     * @property \sonrac\WAMP\Contracts\PubSubRouterInterface|\sonrac\WAMP\Routers\PubSubRouter      $pubSubRouter
33
     * @property \sonrac\WAMP\WAMP                                                                   $wamp       WAMP
34
     *           main extractor
35
     * @property \sonrac\WAMP\Contracts\WAMPRouterInterface|\sonrac\WAMP\Routers\Router              $wampRouter WAMP
36
     *           complex router
37
     */
38
    class Application extends \Illuminate\Container\Container
39
    {
40
    }
41
}
42
43
namespace sonrac\WAMP {
44
45
    use Thruway\ClientSession;
46
47
    /**
48
     * Interface GroupsConfigInterface.
49
     *
50
     * @property array  $middleware Middleware list
51
     * @property string $prefix     Route prefix
52
     * @property string $namespace  Controllers namespace
53
     * @method void|\sonrac\WAMP\GroupsConfigInterface callback(ClientSession $clientSession, Client $client) Groups
54
     *         runner
55
     */
56
    interface GroupsConfigInterface
57
    {
58
    }
59
}
60