Refactor & fix coding standard

This commit is contained in:
Meritoo
2017-09-22 20:07:42 +02:00
parent 633696ebc0
commit 86cc5ff79b
19 changed files with 19 additions and 19 deletions

View File

@@ -23,7 +23,7 @@ class NotExistingFileException extends \Exception
*/
public function __construct($notExistingFilePath)
{
$template = 'File with path \'%s\' does not exist (or is not readable). Did you provide proper path of file?';
$template = 'File with path \'%s\' does not exist (or is not readable). Did you provide path of proper file?';
$message = sprintf($template, $notExistingFilePath);
parent::__construct($message);

View File

@@ -21,7 +21,7 @@ class CannotResolveClassNameException extends Exception
/**
* Class constructor
*
* @param array|object|string $source Source of the class's / trait's name. It cane be an array of objects,
* @param array|object|string $source Source of the class's / trait's name. It can be an array of objects,
* namespaces, object or namespace.
* @param bool $forClass (optional) If is set to true, message of this exception for class is
* prepared. Otherwise - for trait.