Completed
Push — master ( 9462c8...8ad790 )
by Caio
03:56
created
src/Calculators/Calculator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
      * seguinte forma:
9 9
      *  SE RESULTADO = 0  OU RESULTADO > 9 ENTAO DV = 1
10 10
      *
11
-     * @param $numero
11
+     * @param string $numero
12 12
      * @return int
13 13
      */
14 14
     static function calculaModulo11SemDV0($numero)
Please login to merge, or discard this patch.
src/Generators/Base/BarcodeGenerator.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1045,7 +1045,7 @@  discard block
 block discarded – undo
1045 1045
     /**
1046 1046
      * Convert binary barcode sequence to TCPDF barcode array.
1047 1047
      *
1048
-     * @param $seq      (string) barcode as binary sequence.
1048
+     * @param string $seq      (string) barcode as binary sequence.
1049 1049
      * @param $bararray (array) barcode array.
1050 1050
      *                  òparam array $bararray TCPDF barcode array to fill up
1051 1051
      * @return array barcode representation.
@@ -2931,7 +2931,7 @@  discard block
 block discarded – undo
2931 2931
      * Convert large integer number to hexadecimal representation.
2932 2932
      * (requires PHP bcmath extension)
2933 2933
      *
2934
-     * @param $number (string) number to convert specified as a string
2934
+     * @param string $number (string) number to convert specified as a string
2935 2935
      * @return string hexadecimal representation
2936 2936
      */
2937 2937
     public function dec_to_hex($number)
@@ -2961,7 +2961,7 @@  discard block
 block discarded – undo
2961 2961
      * Convert large hexadecimal number to decimal representation (string).
2962 2962
      * (requires PHP bcmath extension)
2963 2963
      *
2964
-     * @param $hex (string) hexadecimal number to convert specified as a string
2964
+     * @param string $hex (string) hexadecimal number to convert specified as a string
2965 2965
      * @return string hexadecimal representation
2966 2966
      */
2967 2967
     public function hex_to_dec($hex)
@@ -3027,7 +3027,7 @@  discard block
 block discarded – undo
3027 3027
     /**
3028 3028
      * Reverse unsigned short value
3029 3029
      *
3030
-     * @param $num (int) value to reversr
3030
+     * @param integer $num (int) value to reversr
3031 3031
      * @return int reversed value
3032 3032
      * @protected
3033 3033
      */
@@ -3047,8 +3047,8 @@  discard block
 block discarded – undo
3047 3047
     /**
3048 3048
      * generate Nof13 tables used for Intelligent Mail Barcode
3049 3049
      *
3050
-     * @param $n    (int) is the type of table: 2 for 2of13 table, 5 for 5of13table
3051
-     * @param $size (int) size of table (78 for n=2 and 1287 for n=5)
3050
+     * @param integer $n    (int) is the type of table: 2 for 2of13 table, 5 for 5of13table
3051
+     * @param integer $size (int) size of table (78 for n=2 and 1287 for n=5)
3052 3052
      * @return array requested table
3053 3053
      * @protected
3054 3054
      */
Please login to merge, or discard this patch.