Completed
Push — 4.0 ( 9f3f64...adbbd2 )
by Serhii
01:58
created
src/Detector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,10 +79,10 @@
 block discarded – undo
79 79
         $this->setDataProvider($dataProvider);
80 80
         $this->detectors = [];
81 81
         $this->resultObject = new Result();
82
-        $check = ['os','device', 'browser', 'robots'];
82
+        $check = ['os', 'device', 'browser', 'robots'];
83 83
         foreach ($check as $detectionType) {
84 84
             $className = sprintf('\\EndorphinStudio\\Detector\\Detection\\%s', ucfirst(sprintf('%sDetector', $detectionType)));
85
-            if(class_exists($className)) {
85
+            if (class_exists($className)) {
86 86
                 $this->detectors[$detectionType] = new $className();
87 87
                 $this->detectors[$detectionType]->init($this);
88 88
             }
Please login to merge, or discard this patch.
src/Storage/YamlStorage.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 namespace EndorphinStudio\Detector\Storage;
11 11
 
12 12
 use Symfony\Component\Yaml\Parser;
13
-use Symfony\Component\Yaml\Yaml;
14 13
 
15 14
 /**
16 15
  * Class YamlStorage
Please login to merge, or discard this patch.
src/Detection/AbstractDetection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     public function init(Detector $detector)
22 22
     {
23 23
         $this->detector = $detector;
24
-        echo static::class . PHP_EOL;
24
+        echo static::class.PHP_EOL;
25 25
     }
26 26
 
27 27
     protected function initResultObject()
Please login to merge, or discard this patch.
src/Tools.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
         if (preg_match($version, $uaString)) {
19 19
             preg_match($version, $uaString, $v);
20 20
             $version = $v[0];
21
-            $version = preg_replace('/' . $phrase . '/', '', $version);
21
+            $version = preg_replace('/'.$phrase.'/', '', $version);
22 22
             $version = str_replace(';', '', $version);
23 23
             $version = str_replace(' ', '', $version);
24 24
             $version = str_replace('/', '', $version);
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
     public static function resolvePath(array &$files, $path)
55 55
     {
56
-        if(is_array($path)) {
56
+        if (is_array($path)) {
57 57
             $files = \array_merge($files, $path);
58 58
         } else {
59 59
             $files[] = $path;
Please login to merge, or discard this patch.