code) { $this->code = $this->generate(); } return $this->code; } protected function generate($length = 6) { return mt_rand(pow(10, ($length - 1)), pow(10, $length) - 1); } public function validate($input) { return $this->code === $input; } }