Completed
Push — fix-tests-php74 ( 439cab )
by Henry
05:38 queued 02:58
created
inc/JpegMeta.php 1 patch
Doc Comments   +14 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2545,7 +2545,7 @@  discard block
 block discarded – undo
2545 2545
      * @param string $header
2546 2546
      * @param mixed $value
2547 2547
      *
2548
-     * @return int|mixed
2548
+     * @return integer
2549 2549
      */
2550 2550
     function _write8BIM(&$data, $pos, $type, $header, &$value) {
2551 2551
         $signature = "8BIM";
@@ -2613,7 +2613,7 @@  discard block
 block discarded – undo
2613 2613
      * @param string $type
2614 2614
      * @param mixed $value
2615 2615
      *
2616
-     * @return int|mixed
2616
+     * @return integer
2617 2617
      */
2618 2618
     function _writeIPTCEntry(&$data, $pos, $type, &$value) {
2619 2619
         $pos = $this->_putShort($data, $pos, 0x1C02);
@@ -2775,6 +2775,10 @@  discard block
 block discarded – undo
2775 2775
     }
2776 2776
 
2777 2777
     /*************************************************************/
2778
+
2779
+    /**
2780
+     * @param string $mode
2781
+     */
2778 2782
     function _exifTagTypes($mode) {
2779 2783
         $tags = array();
2780 2784
 
@@ -2925,6 +2929,10 @@  discard block
 block discarded – undo
2925 2929
     }
2926 2930
 
2927 2931
     /*************************************************************/
2932
+
2933
+    /**
2934
+     * @param string $mode
2935
+     */
2928 2936
     function _exifNameTags($mode) {
2929 2937
         $tags = $this->_exifTagNames($mode);
2930 2938
         return $this->_names2Tags($tags);
@@ -3005,6 +3013,10 @@  discard block
 block discarded – undo
3005 3013
     }
3006 3014
 
3007 3015
     /*************************************************************/
3016
+
3017
+    /**
3018
+     * @param integer $pos
3019
+     */
3008 3020
     function _getShort(&$data, $pos, $bigEndian = true) {
3009 3021
         if ($bigEndian) {
3010 3022
             return (ord($data[$pos]) << 8)
Please login to merge, or discard this patch.