Passed
Push — master ( 7a3741...d28810 )
by Rafal
02:02
created
src/Application/SpotifyWebApiPhp/SpotifyWebApi.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 
8 8
 class SpotifyWebApi extends BaseSpotifyWebAPI implements SpotifyWebApiInterface
9 9
 {
10
-    public function addUserPlaylistTracks($userId, $playlistId, $tracks, $options = [])
10
+    public function addUserPlaylistTracks($userId, $playlistId, $tracks, $options = [ ])
11 11
     {
12 12
         return parent::addUserPlaylistTracks($userId, $playlistId, $tracks, $options);
13 13
     }
@@ -17,22 +17,22 @@  discard block
 block discarded – undo
17 17
         return parent::deleteUserPlaylistTracks($userId, $playlistId, $tracks, $snapshotId);
18 18
     }
19 19
 
20
-    public function getUserPlaylist($userId, $playlistId, $options = [])
20
+    public function getUserPlaylist($userId, $playlistId, $options = [ ])
21 21
     {
22 22
         return parent::getUserPlaylist($userId, $playlistId, $options);
23 23
     }
24 24
 
25
-    public function getUserPlaylists($userId, $options = [])
25
+    public function getUserPlaylists($userId, $options = [ ])
26 26
     {
27 27
         return parent::getUserPlaylists($userId, $options);
28 28
     }
29 29
 
30
-    public function getUserPlaylistTracks($userId, $playlistId, $options = [])
30
+    public function getUserPlaylistTracks($userId, $playlistId, $options = [ ])
31 31
     {
32 32
         return parent::getUserPlaylistTracks($userId, $playlistId, $options);
33 33
     }
34 34
 
35
-    public function search($query, $type, $options = [])
35
+    public function search($query, $type, $options = [ ])
36 36
     {
37 37
         return parent::search($query, $type, $options);
38 38
     }
Please login to merge, or discard this patch.