diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-03-03 01:41:53 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2021-03-03 01:41:53 +0300 |
commit | 0e564d2812758bb532588390eb878a080402993c (patch) | |
tree | 938d75279fd9de564850f536df1b7f02a75c206b /src/WorkerClient.php | |
parent | 9f4adb06e6ff05be6217e44b30a910bae1ac4f3c (diff) |
code style
Diffstat (limited to 'src/WorkerClient.php')
-rw-r--r-- | src/WorkerClient.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/WorkerClient.php b/src/WorkerClient.php index dbf0f78..240c200 100644 --- a/src/WorkerClient.php +++ b/src/WorkerClient.php @@ -4,7 +4,8 @@ namespace jobd; class WorkerClient extends Client { - public function __construct(int $port = Client::WORKER_PORT, ...$args) { + public function __construct(int $port = Client::WORKER_PORT, ...$args) + { parent::__construct($port, ...$args); } |