Skip to content

Commit

Permalink
Applied fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
helios-ag authored and StyleCIBot committed Sep 25, 2015
1 parent 9cf0785 commit e9c6d0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Templating/BbcodeExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ public function __construct(DecodaManager $decodaManager)
*/
public function getFilters()
{
$options = array('is_safe'=>array('html'));
$options = array('is_safe' => array('html'));

return array(
new \Twig_SimpleFilter('bbcode_filter', array($this, 'filter'), $options),
new \Twig_SimpleFilter('bbcode_clean', array($this, 'clean'), $options)
new \Twig_SimpleFilter('bbcode_clean', array($this, 'clean'), $options),
);
}

Expand Down

0 comments on commit e9c6d0c

Please sign in to comment.