Skip to content
Snippets Groups Projects
Commit 8f6f6918 authored by Patrick Kenny's avatar Patrick Kenny
Browse files

Issue #3446605 by ptmkenny: Use strict types

parent 4ef9c3fd
No related branches found
No related tags found
1 merge request!9Use strict types everywhere
Pipeline #170292 passed with warnings
......@@ -6,3 +6,5 @@ parameters:
ignoreErrors:
# Drupal does not define its own arrays.
- '#no value type specified in iterable type array#'
# Core bug: https://www.drupal.org/project/drupal/issues/3338439
- '#FormStateInterface::setErrorByName\(\) expects string#'
<?php
declare(strict_types=1);
namespace Drupal\firebase_php;
use Kreait\Firebase\Messaging\MulticastSendReport;
......
<?php
declare(strict_types=1);
namespace Drupal\firebase_php\Form;
use Drupal\Core\Form\ConfigFormBase;
......
<?php
declare(strict_types=1);
namespace Drupal\firebase_php\Service;
use Drupal\Core\Config\ConfigFactory;
......
<?php
declare(strict_types=1);
namespace Drupal\Tests\firebase_php\Kernel;
use Drupal\KernelTests\KernelTestBase;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment