1 | <?php |
||
8 | class DocumentProviderCertificateController extends Controller |
||
9 | { |
||
10 | /** @var \Sausin\Signere\DocumentProvider */ |
||
11 | protected $dp; |
||
12 | |||
13 | /** |
||
14 | * Create a new controller instance. |
||
15 | * |
||
16 | * @param \Sausin\Signere\DocumentProvider $dp |
||
17 | */ |
||
18 | 1 | public function __construct(DocumentProvider $dp) |
|
24 | |||
25 | /** |
||
26 | * Gets the expires date for your BankID certificate. |
||
27 | * |
||
28 | * @return \Illuminate\Http\Response |
||
29 | */ |
||
30 | 1 | public function __invoke() |
|
36 | } |
||
37 |