We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9529d0 commit ed76889Copy full SHA for ed76889
src/Http/UnitRequest.php
@@ -26,8 +26,7 @@ class UnitRequest
26
public function __construct(
27
private readonly string $socket,
28
string $address
29
- )
30
- {
+ ) {
31
$scheme = parse_url($address, PHP_URL_SCHEME);
32
$host = parse_url($address, PHP_URL_HOST);
33
src/Unit.php
@@ -2,15 +2,12 @@
2
3
namespace UnitPhpSdk;
4
5
-use UnitPhpSdk\Config\Statistics;
+use UnitPhpSdk\Contracts\{CertificateInterface, UnitInterface};
6
use UnitPhpSdk\Enums\HttpMethodsEnum;
7
use UnitPhpSdk\Exceptions\FileNotFoundException;
8
use UnitPhpSdk\Exceptions\UnitException;
9
use UnitPhpSdk\Http\UnitRequest;
10
-use UnitPhpSdk\Contracts\{
11
- CertificateInterface,
12
- UnitInterface
13
-};
+use UnitPhpSdk\Statistics\Statistics;
14
15
/**
16
* This is main class of Nginx Unit manipulation
0 commit comments