Skip to content

Instantly share code, notes, and snippets.

@jens1o
Created March 16, 2017 19:58
Show Gist options
  • Save jens1o/97ba11844cfc7f3c004f1da8232ee84b to your computer and use it in GitHub Desktop.
Save jens1o/97ba11844cfc7f3c004f1da8232ee84b to your computer and use it in GitHub Desktop.
<?php
class Example {
public $cool = false;
public function setCoolness() {
$this->cool = true;
return $this;
}
}
function test(Example $example = null) {
$e = $example ?: new Example();
var_dump($e);
}
// test((new Example())->setCoolness());
test();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment