aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/AppFramework/Controller.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/AppFramework/Controller.php')
-rw-r--r--lib/public/AppFramework/Controller.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/public/AppFramework/Controller.php b/lib/public/AppFramework/Controller.php
index 487b6a854fe..5f6eca8b2f0 100644
--- a/lib/public/AppFramework/Controller.php
+++ b/lib/public/AppFramework/Controller.php
@@ -148,12 +148,10 @@ abstract class Controller {
* @since 7.0.0
*/
public function buildResponse($response, $format='json') {
- if(array_key_exists($format, $this->responders)) {
-
+ if (array_key_exists($format, $this->responders)) {
$responder = $this->responders[$format];
return $responder($response);
-
}
throw new \DomainException('No responder registered for format '.
$format . '!');