Add test for WikiPage post-edit stats update
[lhc/web/wiklou.git] / includes / htmlform / HTMLFormFieldRequiredOptionsException.php
index 8460af8..76f5286 100644 (file)
@@ -1,6 +1,9 @@
 <?php
+
 class HTMLFormFieldRequiredOptionsException extends MWException {
        public function __construct( HTMLFormField $field, array $missing ) {
-               parent::__construct( sprintf( "Form type `%s` expected the following parameters to be set: %s", get_class( $field ), implode( ', ', $missing ) ) );
+               parent::__construct( sprintf( "Form type `%s` expected the following parameters to be set: %s",
+                       get_class( $field ),
+                       implode( ', ', $missing ) ) );
        }
-}
\ No newline at end of file
+}