Passed
Push — master ( d5b9c5...238a05 )
by Timo
26s
created
src/Tidal/WampWatch/Model/Behavior/Property/HasCollectionsTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -44,6 +44,9 @@
 block discarded – undo
44 44
         return $this->{$name};
45 45
     }
46 46
 
47
+    /**
48
+     * @param string $name
49
+     */
47 50
     private function hasCollection($name)
48 51
     {
49 52
         return property_exists($this, $name) && is_a($this->{$name}, CollectionInterface::class);
Please login to merge, or discard this patch.
src/Tidal/WampWatch/Model/Factory/ConnectionFactory.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@
 block discarded – undo
26 26
     private $session;
27 27
 
28 28
     private function __construct(RouterInterface $router,
29
-                                 RealmInterface $realm = null,
30
-                                 SessionInterface $session = null
29
+                                    RealmInterface $realm = null,
30
+                                    SessionInterface $session = null
31 31
     )
32 32
     {
33 33
         $this->router = $router;
Please login to merge, or discard this patch.