D | Printer.php | 26 protected $out; variable in PHPUnit_Util_Printer 36 * @param mixed $out 40 public function __construct($out = null) argument 42 if ($out !== null) { 43 if (is_string($out)) { 44 if (strpos($out, 'socket://') === 0) { 45 $out = explode(':', str_replace('socket://', '', $out)); 47 if (count($out) != 2) { 51 $this->out = fsockopen($out[0], $out[1]); 53 if (strpos($out, 'php://') === false && [all …]
|