Passed
Push — master ( c8cb1c...8e013d )
by Radosław
02:15
created
examples/bing.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 var_dump(($results[5])->toArray());
28 28
 
29 29
 //Traversable
30
-foreach($results as $result){
30
+foreach ($results as $result) {
31 31
     var_dump($result->toArray());
32 32
 }
33 33
 
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 require_once(__DIR__ . '/../vendor/autoload.php');
4 4
 
5
-use GuzzleHttp\Client as GuzzleClient;
6
-use Radowoj\Searcher\SearchProvider\Bing;
5
+use GuzzleHttp\Client as GuzzleClient;
6
+use Radowoj\Searcher\SearchProvider\Bing;
7 7
 use Radowoj\Searcher\Searcher;
8 8
 
9 9
 $config = require_once('config.php');
Please login to merge, or discard this patch.
src/SearchResult/Collection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
     public function __construct(array $items = [], int $totalMatches = 0)
21 21
     {
22
-        foreach($items as $item) {
22
+        foreach ($items as $item) {
23 23
             if (!$item instanceof IItem) {
24 24
                 throw new InvalidArgumentException('Given items must implement Radowoj\Searcher\SearchResult\IItem interface');
25 25
             }
Please login to merge, or discard this patch.
src/SearchResult/Item.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 
21 21
     protected function fromArray(array $data)
22 22
     {
23
-        foreach($data as $key => $value) {
23
+        foreach ($data as $key => $value) {
24 24
             if (!property_exists($this, $key)) {
25 25
                 throw new InvalidArgumentException("Invalid search result item property: {$key}");
26 26
             }
Please login to merge, or discard this patch.
examples/google.php 2 patches
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 require_once(__DIR__ . '/../vendor/autoload.php');
4 4
 
5
-use GuzzleHttp\Client as GuzzleClient;
6
-use Radowoj\Searcher\SearchProvider\Google;
5
+use GuzzleHttp\Client as GuzzleClient;
6
+use Radowoj\Searcher\SearchProvider\Google;
7 7
 use Radowoj\Searcher\Searcher;
8 8
 
9 9
 $config = require_once('config.php');
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 var_dump(($results[5])->toArray());
28 28
 
29 29
 //Traversable
30
-foreach($results as $result){
30
+foreach ($results as $result) {
31 31
     var_dump($result->toArray());
32 32
 }
33 33
 
Please login to merge, or discard this patch.
src/SearchProvider/Google.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 
47 47
         $paramsMerged = [];
48 48
 
49
-        foreach($params as $key => $value) {
49
+        foreach ($params as $key => $value) {
50 50
             $paramsMerged[] = "{$key}={$value}";
51 51
         }
52 52
 
Please login to merge, or discard this patch.
Unused Use Statements   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2,14 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Radowoj\Searcher\SearchProvider;
4 4
 
5
-use stdClass;
6
-use Exception;
7
-
8
-use GuzzleHttp\Client as GuzzleClient;
9
-
10
-use Radowoj\Searcher\SearchResult\Collection;
11
-use Radowoj\Searcher\SearchResult\ICollection;
12
-use Radowoj\Searcher\SearchResult\Item;
5
+use stdClass;
6
+use Exception;
7
+use GuzzleHttp\Client as GuzzleClient;
8
+use Radowoj\Searcher\SearchResult\Item;
13 9
 use Radowoj\Searcher\SearchResult\IItem;
14 10
 
15 11
 
Please login to merge, or discard this patch.