Fixed some unnecessary FQNs in docs

This commit is contained in:
Dylan K. Taylor
2017-06-25 12:43:04 +01:00
parent a365c831a8
commit a73c6f1861
23 changed files with 59 additions and 40 deletions

View File

@ -27,6 +27,8 @@ declare(strict_types=1);
namespace pocketmine\plugin;
use pocketmine\command\CommandExecutor;
use pocketmine\Server;
use pocketmine\utils\Config;
/**
@ -90,7 +92,7 @@ interface Plugin extends CommandExecutor{
public function getResources();
/**
* @return \pocketmine\utils\Config
* @return Config
*/
public function getConfig();
@ -101,7 +103,7 @@ interface Plugin extends CommandExecutor{
public function reloadConfig();
/**
* @return \pocketmine\Server
* @return Server
*/
public function getServer();

View File

@ -34,7 +34,7 @@ abstract class PluginBase implements Plugin{
/** @var PluginLoader */
private $loader;
/** @var \pocketmine\Server */
/** @var Server */
private $server;
/** @var bool */