Skip to content

Commit

Permalink
Fixed Tag::displayTo return value
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyklay committed Dec 19, 2015
1 parent d0eec46 commit 60d21cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions phalcon/tag.zep
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,9 @@ class Tag
* @param string id
* @param string value
*/
public static function displayTo(id, value)
public static function displayTo(id, value) -> void
{
return self::setDefault(id, value);
self::setDefault(id, value);
}

/**
Expand Down

0 comments on commit 60d21cf

Please sign in to comment.