lib/php/libsdk/SDK/Build/PGO/Abstracts/Server.php (14 lines of code) (raw):

<?php namespace SDK\Build\PGO\Abstracts; use SDK\Build\PGO\Interfaces; abstract class Server { public function getName() : string { return $this->name; } public function getPhp() : Interfaces\PHP { return $this->php; } }