Skip to content

Instantly share code, notes, and snippets.

@patrickallaert
Created February 15, 2017 14: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 patrickallaert/7de89e2538161c6c3cdeaec094f45b61 to your computer and use it in GitHub Desktop.
Save patrickallaert/7de89e2538161c6c3cdeaec094f45b61 to your computer and use it in GitHub Desktop.
FooBar with minimal comments
<?php
class FooBar
{
/** @var Baz */
private $baz;
pulic function __construct(Baz $baz)
{
$this->baz = $baz;
}
public function getBaz(): Baz
{
return $this->baz;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment