Marko Murumaa

Web Developer
class Marko extends Person
{
public $age = 27;

public $languages = [
'Eesti',
'English',
];

public $location = [
'country' => 'Estonia',
'city' => 'Tallinn',
];

public $currentStatus = [
'company' => 'MarkoFly OÜ',
'position' => 'Freelance developer',
];

public function skills()
{
return [
'PHP',
'SQL',
'JavaScript',
'HTML/CSS',
];
}

public function tools()
{
return [
'Laravel 5',
'Wordpress',
'Vue.js', 'Vuex.js', 'Nuxt.js',
'jQuery',
'Bootstrap', 'Bulma',
'Git',
'Gulp',
'Webpack',
'Sass', 'Less',
];
}

public function services()
{
return [
'VS Code', 'Sublime Text',
'DigitalOcean', 'Zone Media',
'Slack',
'Bitbucket', 'Github',
];
}

public function social()
{
return [
];
}

public function contact($type = self::email)
{
if ($type === self::email) {
return 'moc.liamg@aamurum.okram';
}
if ($type === self::phone) {
return $this->getPhone();
}
return null;
}

protected function getPhone()
{
return null;
}
}