for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DP\Core\CoreBundle\Settings;
class Settings
{
/**
* @var bool
*/
private $debug;
* @param bool $debug
public function __construct($debug)
$this->debug = $debug;
}
*
* @return Settings
public function setDebug($debug)
return $this;
* @return bool
public function getDebug()
return $this->debug;