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

Commit

Permalink
Browse files Browse the repository at this point in the history
- interfaces are only part of class declaration that should go on
  separate line
- one interface per line
  • Loading branch information
weierophinney committed Jul 23, 2012
1 parent 3b147a5 commit 3a09f79
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/AbstractValidator.php
Expand Up @@ -20,8 +20,9 @@
* @category Zend
* @package Zend_Validate
*/
abstract class AbstractValidator
implements ValidatorInterface, TranslatorAwareInterface
abstract class AbstractValidator implements
TranslatorAwareInterface,
ValidatorInterface
{
/**
* The value to be validated
Expand Down

0 comments on commit 3a09f79

Please sign in to comment.