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

Commit

Permalink
Use NumberFormat **filter**, not view helper
Browse files Browse the repository at this point in the history
Fixes #23.
  • Loading branch information
weierophinney committed Feb 8, 2016
1 parent 9485d52 commit 46c49be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FilterPluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
use Zend\Filter\Exception\RuntimeException;
use Zend\I18n\Filter\Alnum;
use Zend\I18n\Filter\Alpha;
use Zend\I18n\Filter\NumberFormat;
use Zend\I18n\Filter\NumberParse;
use Zend\I18n\View\Helper\NumberFormat;
use Zend\ServiceManager\AbstractPluginManager;
use Zend\ServiceManager\Exception\InvalidServiceException;
use Zend\ServiceManager\Factory\InvokableFactory;
Expand Down Expand Up @@ -260,7 +260,7 @@ class FilterPluginManager extends AbstractPluginManager
'zendfiltertonull' => InvokableFactory::class,
'zendi18nfilteralnum' => InvokableFactory::class,
'zendi18nfilteralpha' => InvokableFactory::class,
'zendi18nviewhelpernumberformat' => InvokableFactory::class,
'zendi18nfilternumberformat' => InvokableFactory::class,
'zendi18nfilternumberparse' => InvokableFactory::class,
'zendfilterbasename' => InvokableFactory::class,
'zendfilterblacklist' => InvokableFactory::class,
Expand Down

0 comments on commit 46c49be

Please sign in to comment.