| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- return [
- [
- 'HELLO',
- 'HELLO ',
- ],
- [
- 'HELLO',
- ' HELLO',
- ],
- [
- 'HELLO',
- ' HELLO ',
- ],
- [
- ' HELLO',
- ' HELLO',
- ],
- [
- 'HELLO WORLD',
- 'HELLO WORLD',
- ],
- [
- 'TRUE',
- true,
- ],
- [
- null,
- null,
- ],
- 'no arguments' => ['exception'],
- ];
|