Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / views / src / Plugin / views / join / JoinPluginBase.php
index ccf40f64e9fce33fd4334aa0fb37c2c52e67cb2b..a0bbedf7315dd95bf08989c9ec8509e1a8ea65ae 100644 (file)
@@ -226,7 +226,7 @@ class JoinPluginBase extends PluginBase implements JoinPluginInterface {
     // Merge in some default values.
     $configuration += [
       'type' => 'LEFT',
-      'extra_operator' => 'AND'
+      'extra_operator' => 'AND',
     ];
     $this->configuration = $configuration;
 
@@ -281,6 +281,7 @@ class JoinPluginBase extends PluginBase implements JoinPluginInterface {
 
     $select_query->addJoin($this->type, $right_table, $table['alias'], $condition, $arguments);
   }
+
   /**
    * Adds the extras to the join condition.
    *