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

Commit

Permalink
Merge branch 'hotfix/81'
Browse files Browse the repository at this point in the history
Close #81
  • Loading branch information
akrabat committed Jan 29, 2017
2 parents 6129ebd + 4346824 commit fd88331
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ All notable changes to this project will be documented in this file, in reverse

### Fixed

- Nothing.
- [#81](https://github.com/zendframework/zend-validator/pull/81) registers the
Uuid validator into ValidatorPluginManager.

## 2.8.1 - 2016-06-23

Expand Down
4 changes: 4 additions & 0 deletions src/ValidatorPluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,8 @@ class ValidatorPluginManager extends AbstractPluginManager
'Timezone' => Timezone::class,
'uri' => Uri::class,
'Uri' => Uri::class,
'uuid' => Uuid::class,
'Uuid' => Uuid::class,
];

/**
Expand Down Expand Up @@ -253,6 +255,7 @@ class ValidatorPluginManager extends AbstractPluginManager
Step::class => InvokableFactory::class,
Timezone::class => InvokableFactory::class,
Uri::class => InvokableFactory::class,
Uuid::class => InvokableFactory::class,

// v2 canonical FQCNs

Expand Down Expand Up @@ -344,6 +347,7 @@ class ValidatorPluginManager extends AbstractPluginManager
'zendvalidatorstep' => InvokableFactory::class,
'zendvalidatortimezone' => InvokableFactory::class,
'zendvalidatoruri' => InvokableFactory::class,
'zendvalidatoruuid' => InvokableFactory::class,
];

/**
Expand Down

0 comments on commit fd88331

Please sign in to comment.