@@ -24,10 +24,10 @@ |
||
| 24 | 24 | // This works; |
| 25 | 25 | // Must return the same ID; |
| 26 | 26 | $example1 = Example::getInstance(); |
| 27 | -echo $example1->getId() . "\n"; |
|
| 27 | +echo $example1->getId()."\n"; |
|
| 28 | 28 | |
| 29 | 29 | $example2 = Example::getInstance(); |
| 30 | -echo $example2->getId() . "\n"; |
|
| 30 | +echo $example2->getId()."\n"; |
|
| 31 | 31 | |
| 32 | 32 | |
| 33 | 33 | // That cannot work! |