Commit 46c14bb9 authored by David Suissa's avatar David Suissa
Browse files

Issue #3565094 by dydave: Added 'declare(strict_types=1)' to all PHP files.

parent 0a397e4f
Loading
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -5,6 +5,8 @@
 * This is the module to create a drop-down menu for the core toolbar.
 */

declare(strict_types=1);

use Drupal\Component\Utility\Html;
use Drupal\Component\Utility\NestedArray;
use Drupal\Core\Url;
+2 −0
Original line number Diff line number Diff line
@@ -5,6 +5,8 @@
 * Integration of a JS autocomplete search text field in the admin toolbar.
 */

declare(strict_types=1);

use Drupal\admin_toolbar_search\Constants\AdminToolbarSearchConstants;
use Drupal\Component\Utility\NestedArray;
use Drupal\Core\Url;
+2 −0
Original line number Diff line number Diff line
<?php

declare(strict_types=1);

namespace Drupal\admin_toolbar_search\Constants;

/**
+2 −0
Original line number Diff line number Diff line
<?php

declare(strict_types=1);

namespace Drupal\admin_toolbar_search\Controller;

use Drupal\Core\Controller\ControllerBase;
+2 −0
Original line number Diff line number Diff line
<?php

declare(strict_types=1);

namespace Drupal\admin_toolbar_search\Form;

use Drupal\Core\Form\ConfigFormBase;
Loading