Applied rector to test files

This commit is contained in:
Jan Böhmer 2023-06-11 14:18:53 +02:00
parent 7ee01d9a05
commit 98dc553938
46 changed files with 42 additions and 102 deletions

View file

@ -43,7 +43,7 @@ class EntityExtensionTest extends WebTestCase
protected function setUp(): void
{
parent::setUp(); // TODO: Change the autogenerated stub
// TODO: Change the autogenerated stub
//Get a service instance.
self::bootKernel();

View file

@ -31,7 +31,7 @@ class TwigCoreExtensionTest extends WebTestCase
protected function setUp(): void
{
parent::setUp(); // TODO: Change the autogenerated stub
// TODO: Change the autogenerated stub
//Get an service instance.
self::bootKernel();
@ -52,8 +52,8 @@ class TwigCoreExtensionTest extends WebTestCase
$obj = new class {
public $test = 1;
protected $test2 = 3;
private $test3 = 5;
private $test4 = 7;
private int $test3 = 5;
private int $test4 = 7;
public function getTest4(): int
{

View file

@ -44,9 +44,6 @@ class UserExtensionTest extends WebTestCase
/**
* @dataProvider removeeLocaleFromPathDataSet
* @param string $expected
* @param string $input
* @return void
*/
public function testRemoveLocaleFromPath(string $expected, string $input): void
{