| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public static function notRegistered(Client $player, Table $table, $message = null) |
||
| 32 | { |
||
| 33 | $defaultMessage = sprintf('%s is not registered to table: "%s"', $player, $table->id()->toString()); |
||
| 34 | $message = is_null($message) ? $defaultMessage : $message; |
||
| 35 | |||
| 36 | return new static($message); |
||
| 37 | } |
||
| 38 | |||
| 40 |