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

Commit e1c69a0

Browse files
committed
Merge branch 'hotfix/81' into develop
Forward port #81
2 parents 8422bb1 + 4346824 commit e1c69a0

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ All notable changes to this project will be documented in this file, in reverse
3636

3737
### Fixed
3838

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

4142
## 2.8.1 - 2016-06-23
4243

src/ValidatorPluginManager.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,8 @@ class ValidatorPluginManager extends AbstractPluginManager
184184
'Timezone' => Timezone::class,
185185
'uri' => Uri::class,
186186
'Uri' => Uri::class,
187+
'uuid' => Uuid::class,
188+
'Uuid' => Uuid::class,
187189
];
188190

189191
/**
@@ -253,6 +255,7 @@ class ValidatorPluginManager extends AbstractPluginManager
253255
Step::class => InvokableFactory::class,
254256
Timezone::class => InvokableFactory::class,
255257
Uri::class => InvokableFactory::class,
258+
Uuid::class => InvokableFactory::class,
256259

257260
// v2 canonical FQCNs
258261

@@ -344,6 +347,7 @@ class ValidatorPluginManager extends AbstractPluginManager
344347
'zendvalidatorstep' => InvokableFactory::class,
345348
'zendvalidatortimezone' => InvokableFactory::class,
346349
'zendvalidatoruri' => InvokableFactory::class,
350+
'zendvalidatoruuid' => InvokableFactory::class,
347351
];
348352

349353
/**

0 commit comments

Comments
 (0)