Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / views / src / Plugin / views / display_extender / DisplayExtenderPluginBase.php
index d54fc1cdd6e63947a56e268f529e7f518e0db69e..630c0f0a15ca8e04f846e0d9dc8ca6bf00fd8400 100644 (file)
@@ -36,45 +36,45 @@ abstract class DisplayExtenderPluginBase extends PluginBase {
   /**
    * Provide a form to edit options for this plugin.
    */
-  public function defineOptionsAlter(&$options) { }
+  public function defineOptionsAlter(&$options) {}
 
   /**
    * Provide a form to edit options for this plugin.
    */
-  public function buildOptionsForm(&$form, FormStateInterface $form_state) { }
+  public function buildOptionsForm(&$form, FormStateInterface $form_state) {}
 
   /**
    * Validate the options form.
    */
-  public function validateOptionsForm(&$form, FormStateInterface $form_state) { }
+  public function validateOptionsForm(&$form, FormStateInterface $form_state) {}
 
   /**
    * Handle any special handling on the validate form.
    */
-  public function submitOptionsForm(&$form, FormStateInterface $form_state) { }
+  public function submitOptionsForm(&$form, FormStateInterface $form_state) {}
 
   /**
    * Set up any variables on the view prior to execution.
    */
-  public function preExecute() { }
+  public function preExecute() {}
 
   /**
    * Inject anything into the query that the display_extender handler needs.
    */
-  public function query() { }
+  public function query() {}
 
   /**
    * Provide the default summary for options in the views UI.
    *
    * This output is returned as an array.
    */
-  public function optionsSummary(&$categories, &$options) { }
+  public function optionsSummary(&$categories, &$options) {}
 
   /**
    * Static member function to list which sections are defaultable
    * and what items each section contains.
    */
-  public function defaultableSections(&$sections, $section = NULL) { }
+  public function defaultableSections(&$sections, $section = NULL) {}
 
 }