<?php
namespace MASTERPLAYZ0000;
use MASTERPLAYZ0000\languages\Php;
use MASTERPLAYZ0000\languages\Golang;
use MASTERPLAYZ0000\languages\JavaScript;
use MASTERPLAYZ0000\languages\CSharp;
use MASTERPLAYZ0000\ides\PhpStorm;
use MASTERPLAYZ0000\ides\GoLand;
use MASTERPLAYZ0000\ides\WebStorm;
use MASTERPLAYZ0000\ides\Rider;
use MASTERPLAYZ0000\ides\VisualStudio;
use MASTERPLAYZ0000\editors\VisualStudioCode;
use MASTERPLAYZ0000\editors\Notepad;
use MASTERPLAYZ0000\editors\Vim;
class About extends Myself {
private $name = "MasterPlayz";
private $discord = "MasterPlayz#8424";
private $age = 17;
public function getName() : string {
return $this->name;
}
public function getDiscord() : string {
return $this->discord;
}
public function getAge() : string {
return $this->age;
}
public function getJob() : array {
return [
"company" => null,
"position" => null,
];
}
public function getKnownLanguages() : array {
return [
Php::class,
Golang::class,
JavaScript::class,
CSharp::class
];
}
public function getUsingIdes() : array {
return [
PhpStorm::class,
GoLand::class,
WebStorm::class,
Rider::class,
VisualStudio::class
];
}
public function getUsingEditors() : array {
return [
Notepad::class,
VisualStudioCode::class,
Vim::class,
SublimeText::class
];
}
}
?>
😪
sleeping
Popular repositories Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.