Skip to content

Commit 893ff1d

Browse files
committed
Add special Longhorn PHP collab meetup
1 parent 6759211 commit 893ff1d

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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
24+
[a form for that](https://forms.gle/R2NagrbUkLK4Lvvd9).
25+
END;
26+
}
27+
28+
public function getDateTime(): DateTimeImmutable
29+
{
30+
/** @noinspection PhpUnhandledExceptionInspection */
31+
return new DateTimeImmutable('2025-10-23 19:00:00', new DateTimeZone('America/New_York'));
32+
}
33+
34+
public function getSpeakerName(): string
35+
{
36+
return 'The PHP community';
37+
}
38+
39+
public function getSpeakerBio(): string
40+
{
41+
return <<<END
42+
Whether you're in Austin or joining from online, if you've got a lightning talk, we want to hear it. We'll
43+
update this bio after the fact with info on whoever winds up presenting.
44+
END;
45+
}
46+
47+
public function getYouTubeLink(): string
48+
{
49+
return 'https://www.youtube.com/watch?v=S8SDtZce_mk';
50+
}
51+
}

0 commit comments

Comments
 (0)