1 | <?php |
||
10 | class SecondaryKeyRenewalController extends Controller |
||
11 | { |
||
12 | /** @var \Sausin\Signere\ApiKey */ |
||
13 | protected $key; |
||
14 | |||
15 | /** |
||
16 | * Create a new controller instance. |
||
17 | * |
||
18 | * @param \Sausin\Signere\ApiKey $key |
||
19 | */ |
||
20 | 1 | public function __construct(ApiKey $key) |
|
26 | |||
27 | /** |
||
28 | * Renew the secondary key. |
||
29 | * |
||
30 | * @param Request $request |
||
31 | * @return \Illuminate\Http\Response |
||
32 | */ |
||
33 | 1 | public function __invoke(Request $request) |
|
39 | } |
||
40 |