<?php
namespace Cristian\Profile;
use Enums\Country;
use Attributes\Passion;
#[Passion('Coding', 'Architecture', 'Open Source')]
final class About extends Me
{
public function __construct(
public private(set) string $fullName = 'Cristian Ferreyra',
public private(set) string $role = 'Full Stack Developer',
public private(set) Country $from = Country::Argentina,
public private(set) array $stack = ['PHP 8.x', 'Laravel', 'Bun', 'Vue'],
) {}
public string $currentStatus {
get => match (true) {
(int) date('N') >= 6 => 'Enjoying the weekend 🧉',
(int) date('H') < 9 => 'Brewing the first coffee ☕',
(int) date('H') > 22 => 'Debugging in owl mode 🦉',
default => 'Writing clean and elegant code 💻',
};
}
public function getDailyGoal(): string
{
return 'Build robust applications & learn something new every day.';
}
}From: 15 March 2026 - To: 22 March 2026
PHP ███████████░░░░░░░░░░░░░░ 43.44 %
Vue.js █████████▓░░░░░░░░░░░░░░░ 39.10 %
TypeScript ██▓░░░░░░░░░░░░░░░░░░░░░░ 10.32 %
Bash ▓░░░░░░░░░░░░░░░░░░░░░░░░ 03.25 %
shell script ▒░░░░░░░░░░░░░░░░░░░░░░░░ 01.64 %

