<?php $escapedClassNamespace = preg_replace('/\\\/', '\\\\\\', $this->existingParser->classNamespace());
return preg_replace_array(
["/namespace {$escapedClassNamespace}/", "/class {$this->existingParser->className()}/", "/{$this->existingParser->viewName()}/"],
["namespace {$this->classNamespace()}", "class {$this->className()}", $this->viewName()],
$originalFile
);
}
public function testContents($testType = 'phpunit')