<?php
namespace Earth;
use Entities\Mammal\Human;
class Myself implements Human {
/**
* Want to know where I work?
*
* @return array
*/
public getCurrentWorkplace(): array {
return [
'workplace' => [
[
'company' => 'Boone Software, LLC',
'position' => 'Partner',
],
[
'company' => 'Vendorin',
'position' => 'Senior Systems Developer',
],
],
];
}
/**
* These are the skills I use most often.
*
* @return array
*/
public getSkills(): array {
return [
'JavaScript',
'Laravel',
'PHP',
'PostgreSQL',
'TypeScript',
'Vue',
];
}
}