Completed
Push — prototype ( 942ea2...3bfdd7 )
by Peter
04:02
created
examples/simple/public/events-bind-app-dispatch/index.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,9 +5,7 @@
 block discarded – undo
5 5
  */
6 6
 
7 7
 use WebinoAppLib\Event\AppEvent;
8
-use WebinoAppLib\Event\RouteEvent;
9 8
 use WebinoAppLib\Response\Content\SourcePreview;
10
-use WebinoAppLib\Router\DefaultRoute;
11 9
 
12 10
 require __DIR__ . '/../../vendor/autoload.php';
13 11
 
Please login to merge, or discard this patch.
examples/simple/public/filesystem-config/index.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 use WebinoAppLib\Filesystem\InMemoryFiles;
11 11
 use WebinoAppLib\Response\Content\SourcePreview;
12 12
 use WebinoAppLib\Router\DefaultRoute;
13
-use WebinoConfigLib\Feature\Route;
14 13
 
15 14
 require __DIR__ . '/../../vendor/autoload.php';
16 15
 
Please login to merge, or discard this patch.
examples/simple/public/route-bind-invokable-class/index.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use WebinoAppLib\Event\RouteEvent;
8 8
 use WebinoAppLib\Response\Content\SourcePreview;
9 9
 use WebinoAppLib\Router\DefaultRoute;
10
-use Zend\ModuleManager\Listener\AbstractListener;
11 10
 
12 11
 require __DIR__ . '/../../vendor/autoload.php';
13 12
 
Please login to merge, or discard this patch.
examples/simple/public/service-factory-class-invokable/index.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
  * Webino example
5 5
  */
6 6
 
7
-use WebinoAppLib\Application\CoreConfig;
8 7
 use WebinoAppLib\Event\RouteEvent;
9 8
 use WebinoAppLib\Feature\Service;
10 9
 use WebinoAppLib\Response\Content\SourcePreview;
Please login to merge, or discard this patch.
examples/simple/public/service-factory-class/index.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
  * Webino example
5 5
  */
6 6
 
7
-use WebinoAppLib\Application\CoreConfig;
8 7
 use WebinoAppLib\Event\RouteEvent;
9 8
 use WebinoAppLib\Factory\AbstractFactory;
10 9
 use WebinoAppLib\Feature\Service;
Please login to merge, or discard this patch.
examples/simple/public/service-factory-closure/index.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,9 +4,7 @@
 block discarded – undo
4 4
  * Webino example
5 5
  */
6 6
 
7
-use WebinoAppLib\Application\CoreConfig;
8 7
 use WebinoAppLib\Event\RouteEvent;
9
-use WebinoAppLib\Factory\AbstractFactory;
10 8
 use WebinoAppLib\Feature\Service;
11 9
 use WebinoAppLib\Response\Content\SourcePreview;
12 10
 use WebinoAppLib\Router\DefaultRoute;
Please login to merge, or discard this patch.
examples/simple/public/service-factory-config-invokable/index.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
  */
6 6
 
7 7
 use WebinoAppLib\Event\RouteEvent;
8
-use WebinoAppLib\Factory\AbstractFactory;
9 8
 use WebinoAppLib\Feature\Service;
10 9
 use WebinoAppLib\Response\Content\SourcePreview;
11 10
 use WebinoAppLib\Router\DefaultRoute;
Please login to merge, or discard this patch.
library/WebinoAppLib/Application/AbstractBaseApplication.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @triggers bootstrap
36
-     * @param object|Bootstrap $bootstrap
36
+     * @param Bootstrap $bootstrap
37 37
      * @param callable $trigger
38 38
      * @return AbstractConfiguredApplication
39 39
      */
Please login to merge, or discard this patch.
library/WebinoAppLib/Application/Traits/EventsTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,14 +32,14 @@
 block discarded – undo
32 32
     abstract public function get($service);
33 33
 
34 34
     /**
35
-     * @param mixed $service
35
+     * @param string $service
36 36
      * @param null $factory
37 37
      * @return $this
38 38
      */
39 39
     abstract public function set($service, $factory = null);
40 40
 
41 41
     /**
42
-     * @param $service
42
+     * @param string $service
43 43
      * @return bool
44 44
      */
45 45
     abstract public function has($service);
Please login to merge, or discard this patch.