Skip to content
Snippets Groups Projects
Commit ec53937f authored by Wouter Wolters's avatar Wouter Wolters Committed by Benni Mack
Browse files

[TASK] Add declare(strict_types=1) in all FunctionalTests

Strip declare declaration from concatenated ext_localconf files.

Resolves: #94739
Releases: master
Change-Id: I006278888b950a3a4aa105dc6bb822390cd29aef
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/70281


Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarBenni Mack <benni@typo3.org>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
parent 4d8d31f0
Branches
Tags
No related merge requests found
Showing
with 40 additions and 1 deletion
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
......
<?php
declare(strict_types=1);
$EM_CONF[$_EXTKEY] = [
'title' => '',
'description' => '',
......
<?php
declare(strict_types=1);
$EM_CONF[$_EXTKEY] = [
'title' => '',
'description' => '',
......
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
......
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
......@@ -59,6 +61,6 @@ class FormTestService
*/
public function formHtmlContainsField(string $fieldName, string $formHtml): bool
{
return strpos($formHtml, '[' . $fieldName . ']');
return (bool)strpos($formHtml, '[' . $fieldName . ']');
}
}
......@@ -1548,6 +1548,7 @@ tt_content.' . $key . $suffix . ' {
$phpCodeToCache = implode(LF, $phpCodeToCache);
// Remove all start and ending php tags from content
$phpCodeToCache = preg_replace('/<\\?php|\\?>/is', '', $phpCodeToCache);
$phpCodeToCache = preg_replace('/declare\\s?+\\(\\s?+strict_types\\s?+=\\s?+1\\s?+\\);/is', '', (string)$phpCodeToCache);
$codeCache->set(self::getExtLocalconfCacheIdentifier(), $phpCodeToCache);
}
......
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
......
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
......
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
......
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
......
<?php
declare(strict_types=1);
return [
'TYPO3\\CMS\\Fluid\Core\\ViewHelper\\AliasAbstractViewHelper' => \TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper::class,
];
<?php
declare(strict_types=1);
$EM_CONF[$_EXTKEY] = [
'title' => '',
'description' => '',
......
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
......
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
......
<?php
declare(strict_types=1);
return [
'ctrl' => [],
'columns' => [],
......
<?php
declare(strict_types=1);
$EM_CONF[$_EXTKEY] = [
'title' => 'test extension',
'description' => '',
......
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
......
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
......
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
......
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment