diff --git a/src/Exception.php b/src/Exception.php index 8fb6f05..28327f7 100644 --- a/src/Exception.php +++ b/src/Exception.php @@ -31,7 +31,7 @@ class Exception extends \Exception implements ContainerException */ public static function missingParam($class, $param) { - throw new Exception\MissingParam(sprintf("Param missing: %s::\$%s", $class, $param)); + throw new Exception\MissingParam(sprintf('Param missing: %s::$%s', $class, $param)); } /** @@ -60,6 +60,6 @@ public static function serviceNotFound($service) */ public static function setterMethodNotFound($class, $method) { - throw new Exception\SetterMethodNotFound(sprintf("Setter method not found: %s::%s()", $class, $method)); + throw new Exception\SetterMethodNotFound(sprintf('Setter method not found: %s::%s()', $class, $method)); } }