<?php
namespace App\Developer;
#[AsHuman]
final class AlexDaubois implements DeveloperInterface extends AbstractSymfonyDeveloper
{
use TwigTrait;
use OpsTrait;
public const FIRST_NAME = 'Alexandre';
public const LAST_NAME = 'Daubois';
public function __construct(
private \DateTimeImmutable $birthDate = new \DateTimeImmutable('1996-01-07T05:30:00+0200'),
private string $currentCompany = 'SensioLabs',
private string $currentCity = 'Lyon, France'
) {
}
public function getBlog(): ?SocialAccountInterface
{
return new MediumPage('https://alex-daubois.medium.com/');
}
public function getTwitter(): ?SocialAccountInterface
{
return new TwitterAccount('https://alex-daubois.medium.com/');
}
public function getAdditionalLinks(): \Generator
{
yield 'https://amv.gallery';
}
public function isCertified(): bool
{
return true;
}
public function getCertificationLabel(): ?string
{
return $this->isCertified() ? 'Symfony 6 Certified Developer (Expert)' : null;
}
}