Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| OutputMessageException | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| getOutputType | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace Qmp\Laravel\Deduplication\Exceptions; |
| 4 | |
| 5 | use Exception; |
| 6 | |
| 7 | class OutputMessageException extends Exception { |
| 8 | |
| 9 | protected $outputType = 'error'; |
| 10 | |
| 11 | public function getOutputType() { |
| 12 | return $this->outputType; |
| 13 | } |
| 14 | } |