About me
<?php
class Myself extends User {
$name = "Владимир Родин";
$age = 22;
$country = "Republic of Moldova";
$about = "Меня зовут { $name }, мне { $age } года и я молодой веб-разработчик
с опытом работы 3 года, специализирующийся на frontend и backend разработке.";
$skills = [
'design' => 'good',
'html' => 'excellent',
'css' => 'excellent',
'js' => 'good',
'php' => 'perfectly well',
'wordpress' => 'good'
'laravel' => 'perfectly well',
];
$favourite_quote = "Everything in this beautiful world is designed";
$social = [
'email' => 'buferrodinvv19@gmail.com',
'github' => 'https://github.com/heyhihellobro',
'twitter' => 'https://twitter.com/heyhihellobro',
'vk' => 'https://vk.com/heyhihellobro'
];
}