Conditions | 2 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | 1 | public static function invalidMessageObject($message) |
|
26 | { |
||
27 | 1 | $type = is_object($message) ? get_class($message) : gettype($message); |
|
28 | |||
29 | 1 | return new static( |
|
30 | 1 | 'Notification was not sent. The message should be a instance of `'.SnsMessage::class."` and a `{$type}` was given." |
|
31 | ); |
||
34 |