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

Commit

Permalink
Added class-level docblock to new interface
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed May 16, 2016
1 parent 4bb191f commit 5a43e79
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/ValidatorProviderInterface.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
<?php

/**
* @link http://github.com/zendframework/zend-validator for the canonical source repository
*
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

namespace Zend\Validator;

/**
* Hint to the zend-modulemanager ServiceListener that a module provides validators.
*
* Module classes implementing this interface hint to
* Zend\ModuleManager\ServiceListener that they provide validators for the
* ValidatorPluginManager.
*
* For users of zend-mvc/zend-modulemanager v2, this poses no backwards-compatibility
* break as the method getValidatorConfig is still duck-typed within Zend\Validator\Module
* when providing configuration to the ServiceListener.
*/
interface ValidatorProviderInterface
{
/**
Expand Down

0 comments on commit 5a43e79

Please sign in to comment.