Example #1
0
 public function __construct($lhs, $rhs)
 {
     parent::__construct('%s is not equal to %s', $lhs, $rhs);
 }
Example #2
0
 public function __construct($value)
 {
     parent::__construct('"%s" is no null', $value);
 }
Example #3
0
 public function __construct()
 {
     parent::__construct('Value is null');
 }
Example #4
0
 public function __construct($lhs, $rhs)
 {
     parent::__construct('%s is identical to %s', ${$lhs}, $rhs);
 }
Example #5
0
 public function __construct($value, $type)
 {
     parent::__construct('%s did not match type %s', ${$value}, $type);
 }
Example #6
0
 public function __construct($value)
 {
     parent::__construct('Value "%s" is not empty', $value);
 }
Example #7
0
 public function __construct()
 {
     parent::__construct('Value is empty');
 }