@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | /** |
| 51 | 51 | * Get the Character set form the Code Point |
| 52 | 52 | * |
| 53 | - * @param [type] $codePoint |
|
| 53 | + * @param integer $codePoint |
|
| 54 | 54 | * @return void |
| 55 | 55 | */ |
| 56 | 56 | public static function CharacterFromCodePoint($codePoint) |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | /** |
| 63 | 63 | * Get the number of Valid characters for Check digit |
| 64 | 64 | * |
| 65 | - * @return void |
|
| 65 | + * @return integer |
|
| 66 | 66 | */ |
| 67 | 67 | public static function NumberOfValidCharacters() |
| 68 | 68 | { |
@@ -96,9 +96,9 @@ discard block |
||
| 96 | 96 | /** |
| 97 | 97 | * Format the ID with given split range |
| 98 | 98 | * |
| 99 | - * @param [type] $token |
|
| 100 | - * @param [type] $split |
|
| 101 | - * @return void |
|
| 99 | + * @param string $token |
|
| 100 | + * @param integer $split |
|
| 101 | + * @return string |
|
| 102 | 102 | */ |
| 103 | 103 | public static function format($token, $split) |
| 104 | 104 | { |
@@ -113,8 +113,6 @@ discard block |
||
| 113 | 113 | /** |
| 114 | 114 | * Check the valid ID |
| 115 | 115 | * |
| 116 | - * @param [type] $unique |
|
| 117 | - * @param integer $type |
|
| 118 | 116 | * @return boolean |
| 119 | 117 | */ |
| 120 | 118 | public static function isValidUniqueId($token) |
@@ -146,6 +144,7 @@ discard block |
||
| 146 | 144 | /** |
| 147 | 145 | * Luhn mod N algorithm |
| 148 | 146 | * @input string |
| 147 | + * @param string $checkNumber |
|
| 149 | 148 | * @return string |
| 150 | 149 | **/ |
| 151 | 150 | public static function GenerateCheckCharacter($checkNumber) |
@@ -180,7 +179,7 @@ discard block |
||
| 180 | 179 | * Validate Luhn mod N algorithm |
| 181 | 180 | * |
| 182 | 181 | * @param [type] $checkNumber |
| 183 | - * @return void |
|
| 182 | + * @return boolean |
|
| 184 | 183 | */ |
| 185 | 184 | public static function ValidateCheckCharacter($checkNumber) |
| 186 | 185 | { |