Skip to content

Instantly share code, notes, and snippets.

@Elfennacht
Created November 12, 2018 10:23
Show Gist options
  • Save Elfennacht/21fe02e4806b8601793a6ed4be71c7fe to your computer and use it in GitHub Desktop.
Save Elfennacht/21fe02e4806b8601793a6ed4be71c7fe to your computer and use it in GitHub Desktop.
<?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