Completed
Push — playlist-again ( fb5c97...6b9d61 )
by Pauli
12:15
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.
appframework/businesslayer/businesslayer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 	 * @param string $userId the name of the user for security reasons
47 47
 	 * @throws DoesNotExistException if the entity does not exist
48 48
 	 * @throws MultipleObjectsReturnedException if more than one entity exists
49
-	 * @return Entity the entity
49
+	 * @return \OCA\Music\Db\Artist the entity
50 50
 	 */
51 51
 	public function find($id, $userId){
52 52
 		try {
Please login to merge, or discard this patch.
utility/scanner.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -422,6 +422,9 @@
 block discarded – undo
422 422
 		return $string === null || $string === '';
423 423
 	}
424 424
 
425
+	/**
426
+	 * @param string $tag
427
+	 */
425 428
 	private static function getId3Tag($fileInfo, $tag) {
426 429
 		if(array_key_exists('comments', $fileInfo)) {
427 430
 			$comments = $fileInfo['comments'];
Please login to merge, or discard this patch.
controller/playlistapicontroller.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -145,6 +145,9 @@
 block discarded – undo
145 145
 		}
146 146
 	}
147 147
 
148
+	/**
149
+	 * @param Playlist $playlist
150
+	 */
148 151
 	private function toFullTree($playlist) {
149 152
 		$songs = [];
150 153
 
Please login to merge, or discard this patch.