Completed
Push — master ( 6ceef8...e57472 )
by Antonio Oertel
03:00
created
src/Modulo11.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
     /**
40 40
      * Validação genérica de vários tipos de números. Dentre eles: CPF, CNPJ, PIS.
41
-     * @param string $value Valor a ser validado.
41
+     * @param string $number
42 42
      * @return boolean
43 43
      */
44 44
     public function validate($number)
@@ -50,6 +50,9 @@  discard block
 block discarded – undo
50 50
         return ($digits === $checkDigits);
51 51
     }
52 52
 
53
+    /**
54
+     * @param string $number
55
+     */
53 56
     private function checkDigits($number)
54 57
     {
55 58
         $numberOfIterations = $this->digitsCount;
Please login to merge, or discard this patch.