Passed
Push — develop ( 7fbd2c...82694f )
by nguereza
02:49
created
src/Detector/AbstractDetector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
         $match = null;
119 119
         $matches = [];
120 120
 
121
-        while ($i < $regexLength && ! $matches) {
121
+        while ($i < $regexLength && !$matches) {
122 122
             $reg = $regex[$i];
123 123
             $property = $regex[$i + 1];
124 124
 
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
             $k = 0;
127 127
 
128 128
             $regLength = count($reg);
129
-            while ($j < $regLength && ! $matches) {
129
+            while ($j < $regLength && !$matches) {
130 130
                 $pattern = $reg[$j++];
131 131
                 if (is_string($pattern)) {
132 132
                     preg_match($pattern, $userAgent, $matches);
Please login to merge, or discard this patch.
src/Detector/OsDetector.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,8 @@
 block discarded – undo
57 57
 {
58 58
 
59 59
     /**
60
-    * {@inheritdoc}
61
-    */
60
+     * {@inheritdoc}
61
+     */
62 62
     public function __construct()
63 63
     {
64 64
         parent::__construct();
Please login to merge, or discard this patch.
src/Detector/EngineDetector.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,8 @@
 block discarded – undo
57 57
 {
58 58
 
59 59
     /**
60
-    * {@inheritdoc}
61
-    */
60
+     * {@inheritdoc}
61
+     */
62 62
     public function __construct()
63 63
     {
64 64
         parent::__construct();
Please login to merge, or discard this patch.
src/Detector/DeviceDetector.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,9 +56,9 @@
 block discarded – undo
56 56
 class DeviceDetector extends AbstractDetector
57 57
 {
58 58
 
59
-     /**
60
-     * {@inheritdoc}
61
-     */
59
+        /**
60
+         * {@inheritdoc}
61
+         */
62 62
     public function __construct()
63 63
     {
64 64
         parent::__construct();
Please login to merge, or discard this patch.