Created
November 12, 2018 10:23
-
-
Save Elfennacht/21fe02e4806b8601793a6ed4be71c7fe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Foo { | |
// To reproduce the error, type &$ before $param | |
// as if you would add a param by reference before $param | |
// public function bar(&$ref, $param) | |
public function bar($param) { | |
return 'bar'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment