Completed
Push — master ( d4bf62...6f68dd )
by Florian
06:56
created
Parser/Types/Mp3Parser.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -75,6 +75,9 @@
 block discarded – undo
75 75
 		return $information;
76 76
 	}
77 77
 	
78
+	/**
79
+	 * @param string $property
80
+	 */
78 81
 	protected function getAttribute($audio, $property){
79 82
 		if(array_key_exists($property, $audio['tags']['id3v2'])){
80 83
 			$values = $audio['tags']['id3v2'][$property];
Please login to merge, or discard this patch.
Parser/MediaParserInterface.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,6 @@
 block discarded – undo
30 30
 	 * Checks whether this parser can handle the file or not
31 31
 	 * @param File  $file
32 32
 	 * @return boolean if this parses is able to handle the given file
33
-	*/
33
+	 */
34 34
 	public function canHandle(File $file);
35 35
 }
Please login to merge, or discard this patch.