Example #1
0
 /**
  * @param integer $severity
  * @param integer $spacing
  */
 public function __construct($severity, $spacing = 1)
 {
     parent::__construct($severity);
     $this->spacing = $spacing;
 }
Example #2
0
 /**
  * @param integer                 $severity
  * @param WhitelistInterface|null $whitelist
  */
 public function __construct($severity, WhitelistInterface $whitelist = null)
 {
     parent::__construct($severity);
     $this->whitelist = $whitelist;
 }