Completed
Push — master ( 0072c1...269364 )
by Rafal
01:44
created
src/Application/SpotifyWebApiPhp/SpotifyWebApi.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      * @param array $options
25 25
      * @return bool
26 26
      */
27
-    public function addUserPlaylistTracks(string $userId, string $playlistId, array $tracks, array $options = [])
27
+    public function addUserPlaylistTracks(string $userId, string $playlistId, array $tracks, array $options = [ ])
28 28
     {
29 29
         return $this->baseSpotifyWebAPI->addUserPlaylistTracks($userId, $playlistId, $tracks, $options);
30 30
     }
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * @param array $options
48 48
      * @return array|object
49 49
      */
50
-    public function getUserPlaylist(string $userId, string $playlistId, array $options = [])
50
+    public function getUserPlaylist(string $userId, string $playlistId, array $options = [ ])
51 51
     {
52 52
         return $this->baseSpotifyWebAPI->getUserPlaylist($userId, $playlistId, $options);
53 53
     }
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      * @param array $options
58 58
      * @return array|object
59 59
      */
60
-    public function getUserPlaylists(string $userId, array $options = [])
60
+    public function getUserPlaylists(string $userId, array $options = [ ])
61 61
     {
62 62
         return $this->baseSpotifyWebAPI->getUserPlaylists($userId, $options);
63 63
     }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * @param array $options
69 69
      * @return array|object
70 70
      */
71
-    public function getUserPlaylistTracks(string $userId, $playlistId, array $options = [])
71
+    public function getUserPlaylistTracks(string $userId, $playlistId, array $options = [ ])
72 72
     {
73 73
         return $this->baseSpotifyWebAPI->getUserPlaylistTracks($userId, $playlistId, $options);
74 74
     }
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      * @param array $options
80 80
      * @return array|object
81 81
      */
82
-    public function search(string $query, array $type, array $options = [])
82
+    public function search(string $query, array $type, array $options = [ ])
83 83
     {
84 84
         return $this->baseSpotifyWebAPI->search($query, $type, $options);
85 85
     }
Please login to merge, or discard this patch.