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

Commit

Permalink
Merge fa89f93 into 010084d
Browse files Browse the repository at this point in the history
  • Loading branch information
rodsouto committed Aug 22, 2017
2 parents 010084d + fa89f93 commit 5a1c9a7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/ValidatorPluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@ class ValidatorPluginManager extends AbstractPluginManager
'FileWordCount' => File\WordCount::class,
'float' => I18nValidator\IsFloat::class,
'Float' => I18nValidator\IsFloat::class,
'gpspoint' => GpsPoint::class,
'gpsPoint' => GpsPoint::class,
'GpsPoint' => GpsPoint::class,
'greaterthan' => GreaterThan::class,
'greaterThan' => GreaterThan::class,
'GreaterThan' => GreaterThan::class,
Expand Down Expand Up @@ -230,6 +233,7 @@ class ValidatorPluginManager extends AbstractPluginManager
File\UploadFile::class => InvokableFactory::class,
File\WordCount::class => InvokableFactory::class,
I18nValidator\IsFloat::class => InvokableFactory::class,
GpsPoint::class => InvokableFactory::class,
GreaterThan::class => InvokableFactory::class,
Hex::class => InvokableFactory::class,
Hostname::class => InvokableFactory::class,
Expand Down Expand Up @@ -318,6 +322,7 @@ class ValidatorPluginManager extends AbstractPluginManager
'zendvalidatorfileupload' => InvokableFactory::class,
'zendvalidatorfileuploadfile' => InvokableFactory::class,
'zendvalidatorfilewordcount' => InvokableFactory::class,
'zendvalidatorgpspoint' => InvokableFactory::class,
'zendvalidatorgreaterthan' => InvokableFactory::class,
'zendvalidatorhex' => InvokableFactory::class,
'zendvalidatorhostname' => InvokableFactory::class,
Expand Down

0 comments on commit 5a1c9a7

Please sign in to comment.