Completed
Push — vendor/getid3 ( 2a5d73...44d59b )
by Pauli
03:12
created
3rdparty/getID3/getid3/getid3.lib.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	 *
49 49
 	 * @param float $floatnumber
50 50
 	 *
51
-	 * @return float|int returns int (if possible, otherwise float)
51
+	 * @return integer returns int (if possible, otherwise float)
52 52
 	 */
53 53
 	public static function trunc($floatnumber) {
54 54
 		if ($floatnumber >= 1) {
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 	 * @param string $binarypointnumber
148 148
 	 * @param int    $maxbits
149 149
 	 *
150
-	 * @return array
150
+	 * @return integer
151 151
 	 */
152 152
 	public static function NormalizeBinaryPoint($binarypointnumber, $maxbits=52) {
153 153
 		if (strpos($binarypointnumber, '.') === false) {
@@ -741,7 +741,7 @@  discard block
 block discarded – undo
741 741
 	}
742 742
 
743 743
 	/**
744
-	* @param SimpleXMLElement|array|mixed $XMLobject
744
+	* @param SimpleXMLElement $XMLobject
745 745
 	*
746 746
 	* @return mixed
747 747
 	*/
@@ -1482,7 +1482,7 @@  discard block
 block discarded – undo
1482 1482
 	 * @param string $imgData
1483 1483
 	 * @param array  $imageinfo
1484 1484
 	 *
1485
-	 * @return array|false
1485
+	 * @return string
1486 1486
 	 */
1487 1487
 	public static function GetDataImageSize($imgData, &$imageinfo=array()) {
1488 1488
 		if (PHP_VERSION_ID >= 50400) {
@@ -1741,7 +1741,7 @@  discard block
 block discarded – undo
1741 1741
 	/**
1742 1742
 	 * @param string $path
1743 1743
 	 *
1744
-	 * @return float|bool
1744
+	 * @return integer
1745 1745
 	 */
1746 1746
 	public static function getFileSizeSyscall($path) {
1747 1747
 		$commandline = null;
Please login to merge, or discard this patch.
3rdparty/getID3/getid3/module.archive.zip.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -228,7 +228,7 @@
 block discarded – undo
228 228
 	}
229 229
 
230 230
 	/**
231
-	 * @return array|false
231
+	 * @return string
232 232
 	 */
233 233
 	public function ZIPparseLocalFileHeader() {
234 234
 		$LocalFileHeader = array();
Please login to merge, or discard this patch.
3rdparty/getID3/getid3/module.tag.nikon-nctg.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1277,7 +1277,7 @@  discard block
 block discarded – undo
1277 1277
 	 * @param int $value          0x80 subtracted
1278 1278
 	 * @param string $normalName  'Normal' (0 value) string
1279 1279
 	 * @param string|null $format format string for numbers (default '%+d'), 3) v2 divisor
1280
-	 * @param int|null $div
1280
+	 * @param integer $div
1281 1281
 	 *
1282 1282
 	 * @return string
1283 1283
 	 */
@@ -1350,7 +1350,7 @@  discard block
 block discarded – undo
1350 1350
 
1351 1351
 	/**
1352 1352
 	 * @param string $data
1353
-	 * @param mixed|null $serialNumber
1353
+	 * @param integer|null $serialNumber
1354 1354
 	 * @param mixed|null $shutterCount
1355 1355
 	 * @param int $decryptStart
1356 1356
 	 *
Please login to merge, or discard this patch.