Code style fixes

This commit is contained in:
Dmitry Khomutov 2016-08-25 23:13:19 +07:00
commit 26d59c224a
9 changed files with 149 additions and 158 deletions

View file

@ -27,7 +27,7 @@ abstract class ProcessControlTest extends \PHPUnit_Framework_TestCase
*/
protected function startProcess()
{
$desc = array(array("pipe", "r"), array("pipe", "w"), array("pipe", "w"));
$desc = [["pipe", "r"], ["pipe", "w"], ["pipe", "w"]];
$this->pipes = [];
$this->process = proc_open($this->getTestCommand(), $desc, $this->pipes);