Passed
Branch master (d1c97e)
by vincent
12:33 queued 01:18
created
src/VfacTmdb/Abstracts/Account.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /**
3 3
  * This file is part of the Tmdb package.
4 4
  *
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
             $params['media_id']   = $media_id;
110 110
             $params[$list_type]   = $add;
111 111
 
112
-            $this->tmdb->postRequest('account/'.$this->account_id.'/'.$list_type, $this->options, $params);
112
+            $this->tmdb->postRequest('account/' . $this->account_id . '/' . $list_type, $this->options, $params);
113 113
 
114 114
             return $this;
115 115
         } catch (TmdbException $e) {
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
         $this->tmdb->checkOptionSortBy($this->options, $options);
133 133
         $this->tmdb->checkOptionPage($this->options, $options);
134 134
 
135
-        $response = $this->tmdb->getRequest('account/'.$this->account_id.'/'.$list_type.'/'.$item, $options);
135
+        $response = $this->tmdb->getRequest('account/' . $this->account_id . '/' . $list_type . '/' . $item, $options);
136 136
 
137 137
         $this->page          = (int) $response->page;
138 138
         $this->total_pages   = (int) $response->total_pages;
Please login to merge, or discard this patch.
src/VfacTmdb/Abstracts/Items/PeopleItemCredit.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /**
3 3
  * This file is part of the Tmdb package.
4 4
  *
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
             $this->tmdb->checkOptionLanguage($options, $this->params);
54 54
 
55
-            $this->data   = $this->tmdb->getRequest('person/' . $item_id . '/' . $item_type . '_credits', $this->params);
55
+            $this->data = $this->tmdb->getRequest('person/' . $item_id . '/' . $item_type . '_credits', $this->params);
56 56
         } catch (TmdbException $ex) {
57 57
             throw $ex;
58 58
         }
Please login to merge, or discard this patch.
src/VfacTmdb/Abstracts/Items/TVItem.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /**
3 3
  * This file is part of the Tmdb package.
4 4
  *
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         $options = [];
78 78
         $this->tmdb->checkOptionLanguage($this->params, $options);
79 79
 
80
-        $data   = $this->tmdb->getRequest($params->url, $options);
80
+        $data = $this->tmdb->getRequest($params->url, $options);
81 81
 
82 82
         foreach ($data->$key as $b) {
83 83
             $image = new Results\Image($this->tmdb, $this->id, $b);
Please login to merge, or discard this patch.
src/VfacTmdb/Item.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /**
3 3
  * This file is part of the Tmdb package.
4 4
  *
Please login to merge, or discard this patch.
src/VfacTmdb/Abstracts/Item.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /**
3 3
  * This file is part of the Tmdb package.
4 4
  *
Please login to merge, or discard this patch.
src/VfacTmdb/Abstracts/Results.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /**
3 3
  * This file is part of the Tmdb package.
4 4
  *
Please login to merge, or discard this patch.
src/VfacTmdb/Media.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /**
3 3
  * This file is part of the Tmdb package.
4 4
  *
Please login to merge, or discard this patch.
src/VfacTmdb/Catalogs/Genres.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /**
3 3
  * This file is part of the Tmdb package.
4 4
  *
Please login to merge, or discard this patch.
src/VfacTmdb/Catalogs/Jobs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 /**
4 4
  * This file is part of the Tmdb package.
Please login to merge, or discard this patch.