Passed
Push — master ( f8c4a1...5ea19c )
by Rafal
01:32
created
src/Application/SpotifyWebApiInterface.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
      * @param array $options
16 16
      * @return bool
17 17
      */
18
-    public function addPlaylistTracks($playlistId, array $tracks, array $options = []): bool;
18
+    public function addPlaylistTracks($playlistId, array $tracks, array $options = [ ]): bool;
19 19
 
20 20
     /**
21 21
      * @param string $playlistId
@@ -29,26 +29,26 @@  discard block
 block discarded – undo
29 29
      * @param array $options
30 30
      * @return PlaylistDataProvider
31 31
      */
32
-    public function getPlaylist(string $playlistId, array $options = []): PlaylistDataProvider;
32
+    public function getPlaylist(string $playlistId, array $options = [ ]): PlaylistDataProvider;
33 33
 
34 34
     /**
35 35
      * @param $playlistId
36 36
      * @param array $options
37 37
      * @return PlaylistTracksDataProvider
38 38
      */
39
-    public function getPlaylistTracks(string $playlistId, array $options = []);
39
+    public function getPlaylistTracks(string $playlistId, array $options = [ ]);
40 40
 
41 41
     /**
42 42
      * @param string $playlistName
43 43
      * @param array $options
44 44
      * @return PlaylistDataProvider
45 45
      */
46
-    public function getUserPlaylistByName(string $playlistName, array $options = []): PlaylistDataProvider;
46
+    public function getUserPlaylistByName(string $playlistName, array $options = [ ]): PlaylistDataProvider;
47 47
 
48 48
     /**
49 49
      * @param TrackSearchRequestDataProvider $trackSearchRequest
50 50
      * @param array $options
51 51
      * @return TracksSearchDataProvider
52 52
      */
53
-    public function searchTrack(TrackSearchRequestDataProvider $trackSearchRequest, array $options = []): TracksSearchDataProvider;
53
+    public function searchTrack(TrackSearchRequestDataProvider $trackSearchRequest, array $options = [ ]): TracksSearchDataProvider;
54 54
 }
55 55
\ No newline at end of file
Please login to merge, or discard this patch.