<?php
namespace App\Developer;
/**
* @requires PHP 8.3
*/
#[AsHuman]
final class OskarStark extends SymfonyCoreDeveloper implements DeveloperInterface
{
use Symfony;
use PostgreSQL;
use Twig;
use Ops;
public const FIRST_NAME = 'Oskar';
public const LAST_NAME = 'Stark';
public function __construct(
private \DateTimeImmutable $birthDate = new \DateTimeImmutable('1985-02-20'),
private string $email = 'oskarstark@googlemail.com',
private string $currentCompany = 'SensioLabs Germany', // https://sensiolabs.com
private string $currentCity = 'Berlin, Germany',
) {
}
public function getTwitter(): ?SocialAccountInterface
{
return new TwitterAccount('https://twitter.com/oskarstark');
}
public function isOpenForFreelanceWork(): bool
{
return true;
}
/**
* @return array<string, string>
*/
public function getMaintainedGithubActions(): array
{
return [
'PHPStan' => 'https://github.com/OskarStark/phpstan-ga',
'PHP-CS-Fixer' => 'https://github.com/OskarStark/php-cs-fixer-ga',
];
}
}
-
Notifications
You must be signed in to change notification settings - Fork 0
OskarStark/OskarStark
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published