Commit 8a766e81 authored by Vipul Basapati's avatar Vipul Basapati

Fixed StyleCI issues

parent 45f2b398
...@@ -10,26 +10,27 @@ use Exception; ...@@ -10,26 +10,27 @@ use Exception;
class GeneralException extends Exception class GeneralException extends Exception
{ {
/** /**
* message * message.
* *
* @var string * @var string
*/ */
public $message; public $message;
/** /**
* dontHide * dontHide.
* *
* @var bool * @var bool
*/ */
public $dontHide; public $dontHide;
/** /**
* Constructor function * Constructor function.
* *
* @param string $message * @param string $message
* @param boolean $dontHide * @param boolean $dontHide
*/ */
public function __construct($message, $dontHide = false) { public function __construct($message, $dontHide = false)
{
$this->message = $message; $this->message = $message;
$this->dontHide = $dontHide; $this->dontHide = $dontHide;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment