for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ArjanSchouten\HtmlMinifier;
class Option
{
private $name;
private $description;
private $default = true;
public function __construct($name, $description, $default = true)
$this->name = $name;
$this->description = $description;
$this->default = $default;
}
/**
* @return mixed
*/
public function getName()
return $this->name;
public function getDescription()
return $this->description;
* @return bool
public function isDefault()
return $this->default;