Fix phpstorm inspection issues

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2017-10-17 01:17:37 +02:00
committed by Julius Härtl
parent 320f2bf5c8
commit c45bb71084
25 changed files with 77 additions and 93 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ class NoPermissionException extends StatusException {
public function __construct($message, $controller = null, $method = null) {
parent::__construct($message);
if ($controller && $method) {
$this->message = get_class($controller) . "#" . $method . ": " . $message;
$this->message = get_class($controller) . '#' . $method . ': ' . $message;
}
}