🏗️ Studying the 5th semester of systems analysis and development
🏡 I am Brazilian :)
🎮 Gamer and hardware enthusiast in his spare time
<?php
namespace BrazLucas;
class About extends Me
{
private const COMPANY = 'Infocar Tecnologia';
private const POSITION = 'Full Stack Developer';
public const STACK = [
Technologies::PHP,
Technologies::TYPESCRIPT,
Technologies::LARAVEL,
Technologies::POSTGRESQL,
Technologies::VUEJS,
];
public function getCurrentWorkplace(): array
{
return [
'workplace' => [
'company' => self::COMPANY,
'position' => self::POSITION
]
];
}
public function getDailyKnowledge(): array
{
return self::STACK;
}
public function getOs(): string
{
return 'ArchLinux';
}
public function getFutureGoal(): string
{
return 'To contribute to open source and develop intelligent solutions.';
}
}