Skip to content

Commit

Permalink
Fixes CS
Browse files Browse the repository at this point in the history
  • Loading branch information
kzykhys committed Feb 4, 2014
1 parent 7d5de80 commit d15bc88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/KzykHys/Parallel/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function listen()
}

$this->file = sys_get_temp_dir() . '/parallel' . posix_getpid() . '.sock';
$address = 'unix://' . $this->file;
$address = 'unix://' . $this->file;

if (($this->socket = stream_socket_server($address)) === false) {
// @codeCoverageIgnoreStart
Expand Down
2 changes: 1 addition & 1 deletion src/KzykHys/Parallel/SimpleWorker.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class SimpleWorker implements Runnable
public function __construct(callable $callable, array $args = [])
{
$this->callable = $callable;
$this->args = $args;
$this->args = $args;
}

/**
Expand Down

0 comments on commit d15bc88

Please sign in to comment.