1 | <?php |
||
9 | class PrimaryKeyRenewalController extends Controller |
||
10 | { |
||
11 | /** @var \Sausin\Signere\ApiKey */ |
||
12 | protected $key; |
||
13 | |||
14 | /** |
||
15 | * Create a new controller instance. |
||
16 | * |
||
17 | * @param \Sausin\Signere\ApiKey $key |
||
18 | */ |
||
19 | 1 | public function __construct(ApiKey $key) |
|
25 | |||
26 | /** |
||
27 | * Renew the primary key. |
||
28 | * |
||
29 | * @return \Illuminate\Http\Response |
||
30 | */ |
||
31 | 1 | public function __invoke() |
|
37 | } |
||
38 |