Skip to content

Commit

Permalink
[TASK] Remove type hint because TYPO3 7.5 sends incompatible instance
Browse files Browse the repository at this point in the history
  • Loading branch information
NamelessCoder committed Sep 28, 2015
1 parent ebe2989 commit 99960c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/UserFunction/HtmlOutput.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class HtmlOutput {
* @param FormEngine $pObj
* @return mixed
*/
public function renderField(array &$parameters, FormEngine &$pObj) {
public function renderField(array &$parameters, &$pObj) {
unset($pObj);
return trim($parameters['parameters']['closure']($parameters));
}
Expand Down

0 comments on commit 99960c2

Please sign in to comment.