Skip to content

Commit 7c8418d

Browse files
committed
Add special Longhorn PHP collab meetup
1 parent 6759211 commit 7c8418d

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace MergePHP\Website\Meetup;
6+
7+
use DateTimeImmutable;
8+
use DateTimeZone;
9+
use MergePHP\Website\AbstractMeetup;
10+
11+
class Meetup20251023MergephpLonghornPhpLightningTalks extends AbstractMeetup
12+
{
13+
public function getTitle(): string
14+
{
15+
return 'MergePHP @ Longhorn PHP: Lightning Talks';
16+
}
17+
18+
public function getDescription(): string
19+
{
20+
return <<<END
21+
We're doing something special in concert with [Longhorn PHP Conference](https://longhornphp.com): a special
22+
live-streamed hybrid meetup with lightning talks! WWWe'll both live-stream the event _and_ allow folks to
23+
present virtually. Want to sign up to speak ahead of time? We have [a form for that](https://forms.gle/R2NagrbUkLK4Lvvd9).
24+
END;
25+
}
26+
27+
public function getDateTime(): DateTimeImmutable
28+
{
29+
/** @noinspection PhpUnhandledExceptionInspection */
30+
return new DateTimeImmutable('2025-10-23 19:00:00', new DateTimeZone('America/New_York'));
31+
}
32+
33+
public function getSpeakerName(): string
34+
{
35+
return 'The PHP community';
36+
}
37+
38+
public function getSpeakerBio(): string
39+
{
40+
return <<<END
41+
Whether you're in Austin or joining from online, if you've got a lightning talk, we want to hear it. We'll
42+
update this bio after the fact with info on whoever winds up presenting.
43+
END;
44+
}
45+
46+
public function getYouTubeLink(): string
47+
{
48+
return 'https://www.youtube.com/watch?v=S8SDtZce_mk';
49+
}
50+
}

0 commit comments

Comments
 (0)