mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix incorrect exceptions message for missing plugins
This commit is contained in:
parent
5f97292648
commit
26588827dc
1 changed files with 2 additions and 2 deletions
|
@ -418,12 +418,12 @@ class MissingTestLoaderException extends CakeException {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Exception Raised when a test loader could not be found
|
* Exception Raised when a plugin could not be found
|
||||||
*
|
*
|
||||||
* @package cake.libs
|
* @package cake.libs
|
||||||
*/
|
*/
|
||||||
class MissingPluginException extends CakeException {
|
class MissingPluginException extends CakeException {
|
||||||
protected $_messageTemplate = 'Test plugin %s could not be found.';
|
protected $_messageTemplate = 'Plugin %s could not be found.';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue