Make lines short to pass phpcs in six files under includes/
[lhc/web/wiklou.git] / includes / widget / ComplexTitleInputWidget.php
index 73ef54c..ea0ef9e 100644 (file)
@@ -19,8 +19,8 @@ class ComplexTitleInputWidget extends \OOUI\Widget {
         * Like TitleInputWidget, but the namespace has to be input through a separate dropdown field.
         *
         * @param array $config Configuration options
-        * @param array $config['namespace'] Configuration for the NamespaceInputWidget dropdown with list
-        *     of namespaces
+        * @param array $config['namespace'] Configuration for the NamespaceInputWidget dropdown
+        *  with list of namespaces
         * @param array $config['title'] Configuration for the TitleInputWidget text field
         */
        public function __construct( array $config = array() ) {
@@ -42,10 +42,13 @@ class ComplexTitleInputWidget extends \OOUI\Widget {
                $this->title = new TitleInputWidget( array_merge(
                        $config['title'],
                        array(
-                               // The inner TitleInputWidget shouldn't be infusable, only the ComplexTitleInputWidget itself can be.
+                               // The inner TitleInputWidget shouldn't be infusable,
+                               // only the ComplexTitleInputWidget itself can be.
                                'infusable' => false,
                                'relative' => true,
-                               'namespace' => isset( $config['namespace']['value'] ) ? $config['namespace']['value'] : null,
+                               'namespace' => isset( $config['namespace']['value'] ) ?
+                                       $config['namespace']['value'] :
+                                       null,
                        )
                ) );