Cześć

// Paweł Grzenkowicz // Backend Developer (PHP/Symfony)

class Paweł Grzenkowicz {
public function __construct(
private string $name = 'Paweł Grzenkowicz',
private string $birthDate = '30.06.1994',
private string $email = 'pawelgrzenkowicz123@gmail.com'
) { }
public function workExperience(): array {
return [
[ '01.2022 - now' => 'INELO' ],
[ '02.2025 - 07.2025' => 'SOFTWEBO' ],
[ '09.2021 - 01.2022' => 'E NET PRODUCTION' ],
[ '10.2019 - 09.2021' => 'DB TEAM' ],
[ '02.2017 - 10.2019' => 'BLITZ' ],
];
}
public function skills(): array {
return [
'PHP', 'Symfony', 'API', 'REST', 'CQRS', 'DDD', 'Docker', 'Kubernetes', 'Unit test', 'E2E test', 'Behat test', 'Go', 'MySQL', 'MongoDB', 'Redis', 'Doctrine', 'CI/CD', 'JavaScript', 'TypeScript', 'Vue', 'Nuxt', 'Angular' 'HTML/CSS', 'Twig', 'Git', 'Microservices', 'Grafana', 'SCRUM', 'AI-assisted development'
];
}
public function education(): array {
return [
'2010-2014' => 'Vocational Technical High School for Computer Science in Gdynia'
];
}
public function languages(): array {
return [
[ 'Polish' => 'native' ],
[ 'English' => 'B2' ],
];
}
public function interests(): array {
return [
'Team sports (rugby, volleyball)',
'Gym',
'Healthy eating',
];
}
}