Skip to content

Commit

Permalink
Fixes for docblock issues raised by scrutinizer
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrozucca committed Aug 26, 2016
1 parent 2954b1d commit 75aebc5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Model/NavigationRedirectRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
namespace MX\HelperBar\Model;

use MX\HelperBar\Api\NavigationRedirectInterface;
use MX\HelperBar\Api\NavigationRedirectRepositoryInterface;

class NavigationRedirectRepository implements \MX\HelperBar\Api\NavigationRedirectRepositoryInterface
class NavigationRedirectRepository implements NavigationRedirectRepositoryInterface
{
/**
* @var NavigationRedirectInterface
* @var NavigationRedirectInterface[]
*/
private $navigationRedirects;

Expand All @@ -23,7 +24,7 @@ public function __construct($navigationRedirects = [])
/**
* Return an array of NavigationRedirect objects
*
* @return NavigationRedirectInterface
* @return NavigationRedirectInterface[]
*/
public function getRedirects()
{
Expand Down

0 comments on commit 75aebc5

Please sign in to comment.