Skip to content

Commit

Permalink
Don't typehint this due to BC break
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Feb 13, 2014
1 parent 0ffd49b commit c03ac4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion framework/Core/lib/Horde/Core/Tagger.php
Expand Up @@ -422,6 +422,6 @@ public function getTagInfo(
*
* @return array A hash of results.
*/
abstract public function search($tags, array $filter = array());
abstract public function search($tags, $filter = array());

}
2 changes: 1 addition & 1 deletion framework/Core/lib/Horde/Core/Tagger/Null.php
Expand Up @@ -100,7 +100,7 @@ public function getTagInfo(

/**
*/
public function search($tags, array $filter = array())
public function search($tags, $filter = array())
{
return array();
}
Expand Down

0 comments on commit c03ac4f

Please sign in to comment.