Browse Source

Wrap long line.

Mark Story 4 years ago
parent
commit
12ca48c8b1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/Controller/Exception/InvalidParameterException.php

+ 2 - 1
src/Controller/Exception/InvalidParameterException.php

@@ -27,7 +27,8 @@ class InvalidParameterException extends CakeException
      */
     protected $templates = [
         'failed_coercion' => 'Unable to coerce "%s" to `%s` for `%s` in action %s::%s().',
-        'missing_dependency' => 'Failed to inject dependency from service container for parameter `%s` with type `%s` in action %s::%s().',
+        'missing_dependency' => 'Failed to inject dependency from service container for parameter `%s` ' .
+            'with type `%s` in action %s::%s().',
         'missing_parameter' => 'Missing passed parameter for `%s` in action %s::%s().',
         'unsupported_type' => 'Type declaration for `%s` in action %s::%s() is unsupported.',
     ];