Skip to content

Commit

Permalink
Add phpdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
g105b committed Aug 4, 2014
1 parent c2a510f commit f464879
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Cli/Process.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ class Process {
private $fp;
private $processString;

/**
* @param string $processName The process to spawn
* @param array $processArgs Associative array of arguments to pass
*/
public function __construct($processName, array $processArgs) {
$this->processString = $processName;

Expand All @@ -23,8 +27,6 @@ public function __construct($processName, array $processArgs) {
}
$this->processString .= $value;
}


}

public function __destruct() {
Expand Down

0 comments on commit f464879

Please sign in to comment.