Skip to content

Commit cc4cfd2

Browse files
committed
Add November 2025 meetup
1 parent aa6a30d commit cc4cfd2

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed
21.4 KB
Loading
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 Meetup20251113WhatsNewInPhp85 extends AbstractMeetup
12+
{
13+
public function getTitle(): string
14+
{
15+
return 'What\'s New in PHP 8.5';
16+
}
17+
18+
public function getDescription(): string
19+
{
20+
return '';
21+
}
22+
23+
public function getDateTime(): DateTimeImmutable
24+
{
25+
/** @noinspection PhpUnhandledExceptionInspection */
26+
return new DateTimeImmutable('2025-11-13 19:00:00', new DateTimeZone('America/New_York'));
27+
}
28+
29+
public function getImage(): string
30+
{
31+
return '/images/whats-new-in-php-85.png';
32+
}
33+
34+
public function getSpeakerName(): string
35+
{
36+
return 'Ian Littman';
37+
}
38+
39+
public function getSpeakerBio(): string
40+
{
41+
return <<<END
42+
When Ian isn't CTO'ing a startup throwing APIs around insurance data or helping organize Longhorn PHP
43+
conference, he's soaking up the Texas Hill Country, or talking about mobile or airline networks on Twitter.
44+
END;
45+
}
46+
47+
public function getYouTubeLink(): string
48+
{
49+
return 'https://www.youtube.com/watch?v=JrkUdEswSSo';
50+
}
51+
}

0 commit comments

Comments
 (0)