Completed
Push — master ( f47175...244bdd )
by Andreas
02:08
created
src/CreditCard/ExpiryDate.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     public function __construct($month, $year)
47 47
     {
48 48
         $pad = "20"; # Since expiration would be in future, assuming start millenium is 2000.
49
-                     # Please correct this accordingly in next millenium :P.
49
+                        # Please correct this accordingly in next millenium :P.
50 50
         $this->year  = (int) str_pad($year, 4, $pad, STR_PAD_LEFT);
51 51
         $this->month = (int) $month;
52 52
 
Please login to merge, or discard this patch.