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 84de91b commit 5d2770e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
5 changes: 2 additions & 3 deletions src/Helper/HeadTitle.php
Expand Up @@ -20,9 +20,8 @@
* @package Zend_View
* @subpackage Helper
*/
class HeadTitle
extends Placeholder\Container\AbstractStandalone
implements TranslatorAwareInterface
class HeadTitle extends Placeholder\Container\AbstractStandalone implements
TranslatorAwareInterface
{
/**
* Registry key for placeholder
Expand Down
9 changes: 4 additions & 5 deletions src/Helper/Navigation/AbstractHelper.php
Expand Up @@ -28,11 +28,10 @@
* @package Zend_View
* @subpackage Helper
*/
abstract class AbstractHelper
extends View\Helper\AbstractHtmlElement
implements HelperInterface,
ServiceLocatorAwareInterface,
TranslatorAwareInterface
abstract class AbstractHelper extends View\Helper\AbstractHtmlElement implements
HelperInterface,
ServiceLocatorAwareInterface,
TranslatorAwareInterface
{
/**
* @var ServiceLocatorInterface
Expand Down

0 comments on commit 5d2770e

Please sign in to comment.