1
0
mirror of https://github.com/miguel456/php-http-virtualmin-api synced 2023-07-28 01:52:31 +00:00

Update SSLManager.php

This commit is contained in:
Tsvetelin Tsonev
2018-04-21 12:22:06 +02:00
committed by GitHub
parent 63a3d32449
commit 45f3339315

View File

@@ -1,7 +1,7 @@
<?php
namespace Nilemin\Virtualmin\Managers\SSL;
use Nilemin\Virtualmin\Http\HttpClient;
use Nilemin\Virtualmin\Http\HttpClientInterface;
use Nilemin\Manager\BaseManager;
use Nilet\Components\FileSystem\IFile;
@@ -10,7 +10,7 @@ use Nilet\Components\FileSystem\IFile;
*/
class SSLManager extends BaseManager implements SSLManagerInterface {
public function __construct(HttpClient $httpClient) {
public function __construct(HttpClientInterface $httpClient) {
parent::__construct($httpClient);
}