GitHub Header

Nathanael McDaniel's DEV Community Profile

About Me

<?php

namespace Earth;

use Entities\Mammal\Human;

class Myself implements Human
{
    /**
     * The birthdate of this entity.
     *
     * @var int
     */
    protected int $birthdate = 667115760;

    /**
     * Want to know where I work?
     *
     * @return array
     */
    public function getCurrentWorkplace(): array
    {
        return [
            'workplace' => [
                [
                    'company' => 'Sticky.io',
                    'position' => 'Software Engineer',
                ],
            ],
        ];
    }

    /**
     * These are the skills I use most often.
     *
     * @return array
     */
    public function getSkills(): array
    {
        return [
            'JavaScript',
            'Laravel',
            'MySQL',
            'PHP',
            'PostgreSQL',
            'TypeScript',
            'Vue',
        ];
    }
}