Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

Commit

Permalink
Add new factories to config provider
Browse files Browse the repository at this point in the history
  • Loading branch information
Xerkus committed Jun 8, 2019
1 parent fd65be0 commit fab3118
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/ConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

use Zend\Expressive\Template\TemplateRendererInterface;
use Zend\View\HelperPluginManager;
use Zend\View\Renderer\PhpRenderer;

class ConfigProvider
{
Expand All @@ -30,6 +31,8 @@ public function getDependencies() : array
],
'factories' => [
HelperPluginManager::class => HelperPluginManagerFactory::class,
NamespacedPathStackResolver::class => NamespacedPathStackResolverFactory::class,
PhpRenderer::class => PhpRendererFactory::class,
ZendViewRenderer::class => ZendViewRendererFactory::class,
],
];
Expand Down

0 comments on commit fab3118

Please sign in to comment.