Convert all array() syntax to []
[lhc/web/wiklou.git] / includes / libs / replacers / Replacer.php
index f4850bf..3b97835 100644 (file)
@@ -27,7 +27,7 @@ abstract class Replacer {
         * @return array
         */
        public function cb() {
-               return array( &$this, 'replace' );
+               return [ &$this, 'replace' ];
        }
 
        /**