<?php
use Skill;
class Michael
{
public function aboutMe() : string
{
return "
Hello 👋,
I am Michael van Olst, 621907200000 years old and living in the Netherlands.
I am a PHP Developer with 5 years of relevant work experience and love to learn new things.
Over the years I have gained knowledge and experience in: PHP, Laravel, OOP, Reactjs, MySQL,
JavaScript, HTML, CSS, JSON, Linux, XML, Git and a bit of GoLang.
Currently I am working for CM Specialist in Huizen where I am responsible for the backend for their in-house made CMS.
I integrated a lot API's with the CMS e.g. Payment providers like Mollie,
Enterprise Resource Planning software like Exact Online and Snelstart and transporters like DHL, UPS and Sendcloud.
";
}
public function getSkills() : array
{
return [
new Skill('PHP'),
new Skill('OOP'),
new Skill('MySql'),
new Skill('Laravel'),
new Skill('JavaScript'),
new Skill('Next.js'),
new Skill('GIT'),
new Skill('CSS'),
new Skill('JSON'),
new Skill('XML'),
new Skill('HTML'),
new Skill('Linux'),
new Skill('Terminal'),
new Skill('VueJS'),
new Skill('ReactJS'),
];
}
}