Skip to content
This repository has been archived by the owner on Sep 20, 2022. It is now read-only.

Commit

Permalink
TemplateConfigurator: fix missing empty arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
xificurk committed Jul 11, 2016
1 parent df623e2 commit c2fd1a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/TemplateFactory/TemplateConfigurator.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ class TemplateConfigurator
use Nette\SmartObject;

/** @var array */
private $parameters;
private $parameters = [];

/** @var array */
private $providers;
private $providers = [];

/** @var callable[] */
private $filters;
private $filters = [];

/** @var Nette\Localization\ITranslator */
private $translator;
Expand Down

0 comments on commit c2fd1a2

Please sign in to comment.