mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
Removing the specific getPath() method, it was giving the same result as the parent one.
This commit is contained in:
parent
88db6f328b
commit
f55fa4d026
1 changed files with 0 additions and 14 deletions
|
@ -457,18 +457,4 @@ class TestTask extends BakeTask {
|
|||
'help' => __d('cake_console', 'CamelCased name of the plugin to bake tests for.')
|
||||
))->epilog(__d('cake_console', 'Omitting all arguments and options will enter into an interactive mode.'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the path for output. Checks the plugin property
|
||||
* and returns the correct path.
|
||||
*
|
||||
* @return string Path to output.
|
||||
*/
|
||||
public function getPath() {
|
||||
$path = $this->path;
|
||||
if (isset($this->plugin)) {
|
||||
$path = $this->_pluginPath($this->plugin) . 'Test' . DS;
|
||||
}
|
||||
return $path;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue