Passed
Push — master ( 6282ae...86ce5d )
by Gabor
04:01
created
src/WebHemi/StringLib.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         $parts = explode('#', $input);
43 43
         array_walk(
44 44
             $parts,
45
-            function (&$value) {
45
+            function(&$value) {
46 46
                 $value = ucfirst(strtolower($value));
47 47
             }
48 48
         );
Please login to merge, or discard this patch.
src/WebHemi/Data/Storage/User/UserMetaStorage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
      * Returns a User Meta data list identified by user ID.
98 98
      *
99 99
      * @param int $userId
100
-     * @return array
100
+     * @return \WebHemi\Data\Entity\ApplicationEntity
101 101
      */
102 102
     public function getUserMetaArrayForUserId(int $userId) : array
103 103
     {
Please login to merge, or discard this patch.
src/WebHemi/DependencyInjection/ServiceAdapter/Base/ServiceAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
             // Create new instance.
112 112
             $className = $this->serviceLibrary[$identifier][self::SERVICE_CLASS];
113 113
             $reflectionClass = new ReflectionClass($className);
114
-            $serviceInstance =  $reflectionClass->newInstanceArgs($argumentList);
114
+            $serviceInstance = $reflectionClass->newInstanceArgs($argumentList);
115 115
 
116 116
             // Perform post init method calls.
117 117
             foreach ($this->serviceLibrary[$identifier][self::SERVICE_METHOD_CALL] as $methodCallList) {
Please login to merge, or discard this patch.