diff --git a/typo3/sysext/form/Classes/Mvc/Configuration/YamlSource.php b/typo3/sysext/form/Classes/Mvc/Configuration/YamlSource.php index 9105fcfc1618c5a7c647c82d2b0ba44686930e75..a7a4adc6f873354bc9a6f4084356d1704bb24f92 100644 --- a/typo3/sysext/form/Classes/Mvc/Configuration/YamlSource.php +++ b/typo3/sysext/form/Classes/Mvc/Configuration/YamlSource.php @@ -37,31 +37,11 @@ use TYPO3\CMS\Form\Slot\FilePersistenceSlot; */ class YamlSource { - /** - * Will be set if the PHP YAML Extension is installed. - * Having this installed massively improves YAML parsing performance. - * - * @var bool - * @see http://pecl.php.net/package/yaml - */ - protected $usePhpYamlExtension = false; - /** * @var FilePersistenceSlot */ protected $filePersistenceSlot; - /** - * Use PHP YAML Extension if installed. - * @internal - */ - public function __construct() - { - if (extension_loaded('yaml')) { - $this->usePhpYamlExtension = true; - } - } - /** * @param FilePersistenceSlot $filePersistenceSlot */ @@ -107,17 +87,7 @@ class YamlSource } try { - if ($this->usePhpYamlExtension) { - $loadedConfiguration = @yaml_parse($rawYamlContent); - if ($loadedConfiguration === false) { - throw new ParseErrorException( - 'A parse error occurred while parsing file "' . $fileIdentifier . '".', - 1391894094 - ); - } - } else { - $loadedConfiguration = Yaml::parse($rawYamlContent); - } + $loadedConfiguration = Yaml::parse($rawYamlContent); if (is_array($loadedConfiguration)) { $configuration = array_replace_recursive($configuration, $loadedConfiguration); diff --git a/typo3/sysext/form/Tests/Unit/Mvc/Configuration/YamlSourceTest.php b/typo3/sysext/form/Tests/Unit/Mvc/Configuration/YamlSourceTest.php index 695c3b644b2ef0b3b42476127dddd8f150229beb..6f2b0f9dc7b8fe9df1667710e5fc53e101d7d0ca 100644 --- a/typo3/sysext/form/Tests/Unit/Mvc/Configuration/YamlSourceTest.php +++ b/typo3/sysext/form/Tests/Unit/Mvc/Configuration/YamlSourceTest.php @@ -49,32 +49,8 @@ class YamlSourceTest extends \TYPO3\TestingFramework\Core\Unit\UnitTestCase */ public function loadThrowsExceptionIfFileToLoadIsNotValidYamlUseSymfonyParser() { - if (!extension_loaded('yaml')) { - $this->expectException(ParseErrorException::class); - $this->expectExceptionCode(1480195405); - - $mockYamlSource = $this->getAccessibleMock(YamlSource::class, [ - 'dummy', - ], [], '', false); - - $input = [ - 'EXT:form/Tests/Unit/Mvc/Configuration/Fixtures/Invalid.yaml' - ]; - - $mockYamlSource->_call('load', $input); - } - } - - /** - * @test - */ - public function loadThrowsExceptionIfFileToLoadIsNotValidYamlUsePhpExtensionParser() - { - if (!extension_loaded('yaml')) { - $this->markTestSkipped('Yaml PHP extension not available, skipping.'); - } $this->expectException(ParseErrorException::class); - $this->expectExceptionCode(1391894094); + $this->expectExceptionCode(1480195405); $mockYamlSource = $this->getAccessibleMock(YamlSource::class, [ 'dummy',