FEATURE: Add missing method to make tests pass.
* Retrieve yaml files for removed typoscript object identifier. Relates: #54
This commit is contained in:
parent
154fe43582
commit
920c923ed7
1 changed files with 13 additions and 0 deletions
|
@ -81,6 +81,19 @@ class Options
|
|||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array of absolute file names containing removed typoscript object identifier configurations.
|
||||
*
|
||||
* @return array<string>
|
||||
*/
|
||||
public static function getRemovedTypoScriptObjectIdentifierConfigFiles()
|
||||
{
|
||||
return static::getOptionFileNames(
|
||||
'removedTypoScriptObjectIdentifier',
|
||||
__DIR__ . '/../Configuration/Removed/TypoScript/ObjectIdentifier/*.yaml'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the option by optionName, if not defined, use default.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue