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/MasterClient.php | |
parent | 9f4adb06e6ff05be6217e44b30a910bae1ac4f3c (diff) |
code style
Diffstat (limited to 'src/MasterClient.php')
-rw-r--r-- | src/MasterClient.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/MasterClient.php b/src/MasterClient.php index a804ce5..1cfb58e 100644 --- a/src/MasterClient.php +++ b/src/MasterClient.php @@ -4,7 +4,8 @@ namespace jobd; class MasterClient extends Client { - public function __construct(int $port = Client::MASTER_PORT, ...$args) { + public function __construct(int $port = Client::MASTER_PORT, ...$args) + { parent::__construct($port, ...$args); } |