Beispiel #1
0
 /**
  * The implementation of stream_open().
  *
  * @param string  $path
  * @param string  $mode
  * @param integer $options
  * @param string  &$opened_path
  * @return boolean
  */
 public function stream_open($path, $mode, $options, &$opened_path)
 {
     preg_match('!^testdox://(.+)$!', $path, $matches);
     $this->resultID = $matches[1];
     TestDox::initialize($this->resultID);
     $opened_path = $path;
     return true;
 }