Skip to content

Commit

Permalink
use single-quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewprofile committed Apr 29, 2016
1 parent a8bc28d commit a1ad319
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}

/**
Expand Down Expand Up @@ -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));
}
}

0 comments on commit a1ad319

Please sign in to comment.