Skip to content

Commit ddc45d5

Browse files
committed
Clean up some php 7+ syntax.
1 parent 7540105 commit ddc45d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Jobs/CreateTunnel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ protected function createTunnel()
7373
* Verifies whether the tunnel is active or not.
7474
* @return bool
7575
*/
76-
protected function verifyTunnel(): bool
76+
protected function verifyTunnel()
7777
{
7878
return $this->runCommand($this->ncCommand);
7979
}
@@ -83,7 +83,7 @@ protected function verifyTunnel(): bool
8383
* @param $command
8484
* @return bool
8585
*/
86-
protected function runCommand($command): bool
86+
protected function runCommand($command)
8787
{
8888
$return_var = 1;
8989
exec($command, $this->output, $return_var);

0 commit comments

Comments
 (0)