mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-13 03:16:10 +01:00
26 lines
673 B
PHP
26 lines
673 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'tx_events_domain_model_event' => [
|
|
[
|
|
'uid' => 1,
|
|
'global_id' => 'e_100347853',
|
|
'source_name' => 'destination.one',
|
|
'source_url' => 'http://destination.one/',
|
|
],
|
|
[
|
|
'uid' => 2,
|
|
'global_id' => 'e_100347854',
|
|
'source_name' => 'Foreign Example 1',
|
|
'source_url' => 'https://example.com',
|
|
],
|
|
[
|
|
'uid' => 3,
|
|
'global_id' => 'e_100347855',
|
|
'source_name' => 'Foreign Example 2',
|
|
'source_url' => 'https://example.com/something-else',
|
|
],
|
|
],
|
|
];
|