<?php
namespace MuhammadFarhan;
class Developer
{
public string $name = "Muhammad Farhan";
public string $role = "Senior Laravel Developer & Full Stack Engineer";
public string $company = "Founder @ The Providers Official";
public string $location = "Pakistan π΅π°";
public array $currentFocus = [
"Building scalable SaaS & enterprise-grade web applications",
"Microservices architecture & API-first design",
"Blockchain-integrated financial systems",
"Mentoring next-gen developers",
];
public array $funFacts = [
"Former Faculty Member at Aptech (Full Stack Development)",
"Believe great code is an art form π¨",
"Coffee-driven development β",
];
public function getPhilosophy(): string
{
return "Write code that is clean, scalable, and tells a story.";
}
}
|
|
|
|

