Lines Matching refs:last
21 private $last; variable in App\\Utils\\Captcha
76 $this->last = $number;
97 return $this->first.' '.$symbol.' '.$this->last.' = ?';
107 return \call_user_func([Captcha::class, $this->operation], $this->first, $this->last);
118 $last = $this->last;
121 $this->first = $first > $last ? $first : $last;
122 $this->last = $first > $last ? $last : $first;
129 private function addition(int $first, int $last): int argument
131 return $first + $last;
137 private function subtraction(int $first, int $last): int argument
139 return $first - $last;