MNT Remove TODO comments

This commit is contained in:
Sabina Talipova 2023-10-12 15:14:14 +13:00
parent 1a2c5feb7a
commit dc98f28759
2 changed files with 1 additions and 3 deletions

View File

@ -299,7 +299,6 @@ class FixtureContext implements Context
{
$class = $this->convertTypeToClass($type);
// TODO Support more than one record
$fields = $this->convertFields($class, $fieldsTable->getRowsHash());
$fields = $this->prepareFixture($class, $id, $fields);
@ -522,7 +521,6 @@ class FixtureContext implements Context
$yaml = implode("\n ", $yaml);
// Save fixtures into database
// TODO Run prepareAsset() for each File and Folder record
$yamlFixture = new YamlFixture($yaml);
$yamlFixture->writeInto($this->getFixtureFactory());
}

View File

@ -186,7 +186,7 @@ class ModuleSuiteLocator implements Controller
// Resolve variables
$resolvedConfig = $this->container->getParameterBag()->resolveValue($suiteConfig);
return [
'type' => null, // @todo figure out what this is for
'type' => null,
'settings' => $resolvedConfig,
];
}