Completed
Push — fix-undefined-method ( 120446 )
by Morris
15:18
created
businesslayer/albumbusinesslayer.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -57,6 +57,7 @@
 block discarded – undo
57 57
 	/**
58 58
 	 * Returns all albums filtered by artist
59 59
 	 * @param string $artistId the id of the artist
60
+	 * @param string $userId
60 61
 	 * @return Album[] albums
61 62
 	 */
62 63
 	public function findAllByArtist($artistId, $userId){
Please login to merge, or discard this patch.
command/scan.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,6 @@
 block discarded – undo
21 21
 use Symfony\Component\Console\Input\InputInterface;
22 22
 use Symfony\Component\Console\Input\InputOption;
23 23
 use Symfony\Component\Console\Output\OutputInterface;
24
-
25
-
26 24
 use OCA\Music\Utility\Scanner;
27 25
 
28 26
 class Scan extends Command {
Please login to merge, or discard this patch.
db/albummapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 	 * returns artist IDs mapped to album IDs
63 63
 	 *
64 64
 	 * @param integer[] $albumIds IDs of the albums
65
-	 * @return array the artist IDs of an album are accessible
65
+	 * @return callable the artist IDs of an album are accessible
66 66
 	 * 				by the album ID inside of this array
67 67
 	 */
68 68
 	public function getAlbumArtistsByAlbumId($albumIds){
Please login to merge, or discard this patch.