Fix some doc comments

This commit is contained in:
Dylan K. Taylor 2017-02-06 14:50:05 +00:00
parent 7c8586684e
commit 0c35c16727
11 changed files with 25 additions and 27 deletions

View File

@ -537,7 +537,7 @@ class Player extends Human implements CommandSender, InventoryHolder, ChunkLoade
* @param SourceInterface $interface
* @param null $clientID
* @param string $ip
* @param integer $port
* @param int $port
*/
public function __construct(SourceInterface $interface, $clientID, $ip, $port){
$this->interface = $interface;

View File

@ -27,7 +27,7 @@ namespace {
case is_array($var):
echo str_repeat(" ", $cnt) . "array(" . count($var) . ") {" . PHP_EOL;
foreach($var as $key => $value){
echo str_repeat(" ", $cnt + 1) . "[" . (is_integer($key) ? $key : '"' . $key . '"') . "]=>" . PHP_EOL;
echo str_repeat(" ", $cnt + 1) . "[" . (is_int($key) ? $key : '"' . $key . '"') . "]=>" . PHP_EOL;
++$cnt;
safe_var_dump($value);
--$cnt;

View File

@ -30,7 +30,7 @@ interface CommandExecutor{
* @param string $label
* @param string[] $args
*
* @return boolean
* @return bool
*/
public function onCommand(CommandSender $sender, Command $command, $label, array $args);

View File

@ -41,7 +41,7 @@ interface CommandMap{
* @param CommandSender $sender
* @param string $cmdLine
*
* @return boolean
* @return bool
*/
public function dispatch(CommandSender $sender, $cmdLine);

View File

@ -77,7 +77,7 @@ class BlockBreakEvent extends BlockEvent implements Cancellable{
}
/**
* @param boolean $instaBreak
* @param bool $instaBreak
*/
public function setInstaBreak($instaBreak){
$this->instaBreak = (bool) $instaBreak;

View File

@ -1113,7 +1113,7 @@ class Level implements ChunkManager, Metadatable{
/**
* @param Entity $entity
* @param AxisAlignedBB $bb
* @param boolean $entities
* @param bool $entities
*
* @return AxisAlignedBB[]
*/
@ -1248,7 +1248,7 @@ class Level implements ChunkManager, Metadatable{
* Gets the Block object on the Vector3 location
*
* @param Vector3 $pos
* @param boolean $cached
* @param bool $cached
*
* @return Block
*/

View File

@ -51,7 +51,7 @@ interface Metadatable{
*
* @param string $metadataKey
*
* @return boolean
* @return bool
*/
public function hasMetadata($metadataKey);

View File

@ -30,7 +30,7 @@ interface Permissible extends ServerOperator{
*
* @param string|Permission $name
*
* @return boolean
* @return bool
*/
public function isPermissionSet($name);

View File

@ -115,7 +115,7 @@ class PluginManager{
/**
* @param string $loaderName A PluginLoader class name
*
* @return boolean
* @return bool
*/
public function registerInterface($loaderName){
if(is_subclass_of($loaderName, PluginLoader::class)){
@ -381,7 +381,7 @@ class PluginManager{
}
/**
* @param boolean $op
* @param bool $op
*
* @return Permission[]
*/
@ -422,7 +422,7 @@ class PluginManager{
}
/**
* @param boolean $op
* @param bool $op
*/
private function dirtyPermissibles($op){
foreach($this->getDefaultPermSubscriptions($op) as $p){
@ -480,7 +480,7 @@ class PluginManager{
}
/**
* @param boolean $op
* @param bool $op
* @param Permissible $permissible
*/
public function subscribeToDefaultPerms($op, Permissible $permissible){
@ -492,7 +492,7 @@ class PluginManager{
}
/**
* @param boolean $op
* @param bool $op
* @param Permissible $permissible
*/
public function unsubscribeFromDefaultPerms($op, Permissible $permissible){
@ -504,7 +504,7 @@ class PluginManager{
}
/**
* @param boolean $op
* @param bool $op
*
* @return Permissible[]
*/

View File

@ -52,7 +52,7 @@ class RegisteredListener{
* @param EventExecutor $executor
* @param int $priority
* @param Plugin $plugin
* @param boolean $ignoreCancelled
* @param bool $ignoreCancelled
* @param TimingsHandler $timings
*/
public function __construct(Listener $listener, EventExecutor $executor, $priority, Plugin $plugin, $ignoreCancelled, TimingsHandler $timings){

View File

@ -26,8 +26,6 @@ use pocketmine\Server;
/**
* Class Config
*
* Config Class for simple config manipulation of multiple formats.
*/
class Config{
@ -48,9 +46,9 @@ class Config{
/** @var string */
private $file;
/** @var boolean */
/** @var bool */
private $correct = false;
/** @var integer */
/** @var int */
private $type = Config::DETECT;
public static $formats = [
@ -168,7 +166,7 @@ class Config{
}
/**
* @return boolean
* @return bool
*/
public function check(){
return $this->correct === true;
@ -177,7 +175,7 @@ class Config{
/**
* @param bool $async
*
* @return boolean
* @return bool
*/
public function save($async = false){
if($this->correct === true){
@ -224,7 +222,7 @@ class Config{
/**
* @param $k
*
* @return boolean|mixed
* @return bool|mixed
*/
public function __get($k){
return $this->get($k);
@ -241,7 +239,7 @@ class Config{
/**
* @param $k
*
* @return boolean
* @return bool
*/
public function __isset($k){
return $this->exists($k);
@ -315,7 +313,7 @@ class Config{
* @param $k
* @param mixed $default
*
* @return boolean|mixed
* @return bool|mixed
*/
public function get($k, $default = false){
return ($this->correct and isset($this->config[$k])) ? $this->config[$k] : $default;
@ -345,7 +343,7 @@ class Config{
* @param $k
* @param bool $lowercase If set, searches Config in single-case / lowercase.
*
* @return boolean
* @return bool
*/
public function exists($k, $lowercase = false){
if($lowercase === true){
@ -384,7 +382,7 @@ class Config{
* @param $default
* @param $data
*
* @return integer
* @return int
*/
private function fillDefaults($default, &$data){
$changed = 0;