Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function __construct(TokenBrokerInterface $tokenBroker) |
||
26 | { |
||
27 | $this->middleware(config('mobile_verifier.middleware', ['web', 'auth'])); |
||
28 | |||
29 | $throttle = config('mobile_verifier.throttle', 10); |
||
30 | |||
31 | $this->middleware("throttle:$throttle,1")->only('verify', 'resend'); |
||
32 | |||
33 | $this->tokenBroker = $tokenBroker; |
||
34 | } |
||
36 |