Skip to content
Snippets Groups Projects
Commit 13434f55 authored by Bohdan Korablov's avatar Bohdan Korablov
Browse files

MAGETWO-62491: [PR] Delivery of stories (sprint 3)

parent b0a9e203
Branches
No related merge requests found
......@@ -96,7 +96,9 @@ class System implements ConfigTypeInterface
$data = $this->cache->load(self::CONFIG_TYPE);
if (!$data) {
$data = $this->preProcessor->process($this->source->get());
$this->data = new DataObject($data);
$data = $this->fallback->process($data);
$this->data = new DataObject($data);
//Placeholder processing need system config - so we need to save intermediate result
$data = $this->postProcessor->process($data);
$this->data = new DataObject($data);
......
......@@ -26,7 +26,6 @@ class Comment implements CommentInterface
private $source;
/**
* Comment constructor.
* @param PlaceholderFactory $placeholderFactory
* @param DumpConfigSourceInterface $source
*/
......
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