Skip to content

Instantly share code, notes, and snippets.

@fernandodebrando
Last active July 6, 2017 02:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fernandodebrando/3c6c77b6c1360bb6488a28093e7dd6fc to your computer and use it in GitHub Desktop.
Save fernandodebrando/3c6c77b6c1360bb6488a28093e7dd6fc to your computer and use it in GitHub Desktop.
get_class() desabilita o parâmetro nulo
<?php
class Foo
{
function bar($repository)
{
$result = $repository->find(100);
echo get_class($result);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment