Override momentjs's digit transform logic with MW's
[lhc/web/wiklou.git] / includes / EventRelayerGroup.php
index 45e9be9..9dfac79 100644 (file)
@@ -7,10 +7,10 @@
  */
 class EventRelayerGroup {
        /** @var array[] */
-       protected $configByChannel = array();
+       protected $configByChannel = [];
 
        /** @var EventRelayer[] */
-       protected $relayers = array();
+       protected $relayers = [];
 
        /** @var EventRelayerGroup */
        protected static $instance = null;
@@ -18,7 +18,7 @@ class EventRelayerGroup {
        /**
         * @param Config $config
         */
-       protected function __constuct( Config $config ) {
+       protected function __construct( Config $config ) {
                $this->configByChannel = $config->get( 'EventRelayerConfig' );
        }