mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-23 06:16:09 +01:00
Daniel Siepmann
413afa1851
* Rector result with cgl applied * Fix constructor multi line by hand * Migrate away from prophecy.
66 lines
1.3 KiB
PHP
66 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'pages' => [
|
|
[
|
|
'pid' => '0',
|
|
'uid' => '1',
|
|
'title' => 'Page 1',
|
|
'slug' => '/',
|
|
],
|
|
[
|
|
'pid' => '1',
|
|
'uid' => '11',
|
|
'title' => 'Seite 1',
|
|
'l10n_parent' => '1',
|
|
'sys_language_uid' => '1',
|
|
],
|
|
[
|
|
'pid' => '1',
|
|
'uid' => '2',
|
|
'title' => 'Page 2',
|
|
],
|
|
[
|
|
'pid' => '1',
|
|
'uid' => '3',
|
|
'title' => 'Page 3',
|
|
],
|
|
[
|
|
'pid' => '1',
|
|
'uid' => '4',
|
|
'title' => 'Page 4',
|
|
],
|
|
[
|
|
'pid' => '1',
|
|
'uid' => '5',
|
|
'title' => 'Page 5',
|
|
],
|
|
[
|
|
'pid' => '1',
|
|
'uid' => '6',
|
|
'title' => 'Page 6',
|
|
],
|
|
[
|
|
'pid' => '1',
|
|
'uid' => '7',
|
|
'title' => 'Page 7',
|
|
],
|
|
[
|
|
'pid' => '1',
|
|
'uid' => '8',
|
|
'title' => 'Page 8',
|
|
],
|
|
[
|
|
'pid' => '1',
|
|
'uid' => '9',
|
|
'title' => 'Page 9',
|
|
],
|
|
[
|
|
'pid' => '1',
|
|
'uid' => '10',
|
|
'title' => 'Page 10',
|
|
],
|
|
],
|
|
];
|