strict types added

This commit is contained in:
mitsuha_s 2023-07-21 16:35:48 +03:00
parent 5b306cfd54
commit 78ebba425b
5 changed files with 6 additions and 0 deletions

View file

@ -1,4 +1,5 @@
<?php
declare(strict_types = 1);
namespace App\Controller;

View file

View file

@ -1,4 +1,6 @@
<?php
declare(strict_types = 1);
namespace App\Entity;
use App\Repository\PasteRepository;

View file

@ -1,4 +1,6 @@
<?php
declare(strict_types = 1);
namespace App\Form\Type;
use Symfony\Component\Form\AbstractType;

View file

@ -1,4 +1,5 @@
<?php
declare(strict_types = 1);
namespace App\Repository;