Skip to content

Commit b8d9a1b

Browse files
committed
PHP Lint fixes.
1 parent 99169c4 commit b8d9a1b

File tree

1 file changed

+2
-1
lines changed
  • web/themes/contrib/civictheme/includes

1 file changed

+2
-1
lines changed

web/themes/contrib/civictheme/includes/views.inc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ use Drupal\Component\Utility\Html;
1313
use Drupal\Core\Cache\Cache;
1414
use Drupal\Core\Form\FormStateInterface;
1515
use Drupal\Core\Template\Attribute;
16+
use Drupal\views\ViewExecutable;
1617
use Drupal\views\Views;
1718

1819
/**
@@ -189,7 +190,7 @@ function civictheme_preprocess_views_exposed_form(array &$variables): void {
189190
* TRUE if inline filter was processed, FALSE otherwise.
190191
*/
191192
function _civictheme_preprocess_views__exposed_form__inline_filter(array &$variables, $view, array $fields): bool {
192-
if (!($view instanceof \Drupal\views\ViewExecutable)) {
193+
if (!($view instanceof ViewExecutable)) {
193194
return FALSE;
194195
}
195196

0 commit comments

Comments
 (0)