Merge pull request #14664 from civicrm/5.15
[civicrm-core.git] / Civi / API / Subscriber / XDebugSubscriber.php
index 2056f0d5b2f97790c9d1b6b180f6b36a335ffb07..0648cf50b73b415cb2473ed7c87d852eb6d9acc2 100644 (file)
@@ -35,13 +35,14 @@ use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  * @package Civi\API\Subscriber
  */
 class XDebugSubscriber implements EventSubscriberInterface {
+
   /**
    * @return array
    */
   public static function getSubscribedEvents() {
-    return array(
-      Events::RESPOND => array('onApiRespond', Events::W_LATE),
-    );
+    return [
+      Events::RESPOND => ['onApiRespond', Events::W_LATE],
+    ];
   }
 
   /**