Skip to content

Instantly share code, notes, and snippets.

@patrickallaert
Created September 21, 2018 15:41
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save patrickallaert/a3efced7a2044b754c678e694c6fe987 to your computer and use it in GitHub Desktop.
<?php
return [
[
"name" => "Princess Leia",
"account" => "Princess_Leia",
"tweets" => [],
],
[
"name" => "Luke Skywalker",
"account" => "Luke",
"tweets" => [
[
"ts" => "2017-01-01T12:34:56+00:00",
"tweet" => "@Princess_Leia => I'm @Luke Skywalker and I'm here to rescue you!",
],
],
],
[
"name" => "Anakin Skywalker",
"account" => "Darth_Vader",
"tweets" => [
[
"ts" => "2017-01-13T16:00:00+00:00",
"tweet" => "@Luke, I am your father",
],
[
"ts" => "2016-06-06T16:23:00+00:00",
"tweet" => "Your powers are weak, old man.",
],
[
"ts" => "2016-05-10T19:00:00+00:00",
"tweet" => "I've been waiting for you, @Obi-Wan. We meet again, at last.",
],
],
],
[
"name" => "Obi-Wan \"Ben\" Kenobi",
"account" => "Obi-Wan",
"tweets" => [
[
"ts" => "2016-05-09T11:30:00+00:00",
"tweet" => "Blast. This is why I hate flying.",
],
[
"ts" => "2016-05-08T09:00:00+00:00",
"tweet" => "Your clones are very impressive. You must be very proud.",
],
[
"ts" => "2016-03-02T19:15:00+00:00",
"tweet" => "Use the Force, @Luke",
],
[
"ts" => "2016-01-01T14:00:00+00:00",
"tweet" => "@Luke, the Force will be with you",
],
],
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment