Completed
Push — master ( eb20d7...2bc5ee )
by Sergii
05:53 queued 01:14
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
    /**
46
     * Interface GroupsConfigInterface.
47
     *
48
     * @property array    $middleware Middleware list
49
     * @property string   $prefix     Route prefix
50
     * @property \Closure $callback   Groups runner
51
     * @property string   $namespace  Controllers namespace
52
     */
53
    interface GroupsConfigInterface
54
    {
55
    }
56
}
57