@@ -69,8 +69,12 @@ |
||
| 69 | 69 | */ |
| 70 | 70 | private function defaultName() |
| 71 | 71 | { |
| 72 | - if ($this == null) return "BYE"; |
|
| 73 | - if ($this->user == null) return "BYE"; |
|
| 72 | + if ($this == null) { |
|
| 73 | + return "BYE"; |
|
| 74 | + } |
|
| 75 | + if ($this->user == null) { |
|
| 76 | + return "BYE"; |
|
| 77 | + } |
|
| 74 | 78 | return null; |
| 75 | 79 | } |
| 76 | 80 | |