for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SimpleDIC\Dummy;
class Logger
{
/**
* @var null
*/
private $foo;
* Logger constructor.
*
* @param null $foo
$foo
null
public function __construct($foo = null)
$this->foo = $foo;
}
* @return null
public function getFoo()
return $this->foo;