Mass removal of useless @param/@return PHPDoc annotations, pass 1

This commit is contained in:
Dylan K. Taylor
2020-01-21 15:10:18 +00:00
parent 7532c609fb
commit c4793241f5
322 changed files with 0 additions and 5360 deletions

View File

@@ -52,7 +52,6 @@ class ResourcePackManager{
/**
* @param string $path Path to resource-packs directory.
* @param \Logger $logger
*/
public function __construct(string $path, \Logger $logger){
$this->path = $path;
@@ -122,7 +121,6 @@ class ResourcePackManager{
/**
* Returns the directory which resource packs are loaded from.
* @return string
*/
public function getPath() : string{
return $this->path;
@@ -130,7 +128,6 @@ class ResourcePackManager{
/**
* Returns whether players must accept resource packs in order to join.
* @return bool
*/
public function resourcePacksRequired() : bool{
return $this->serverForceResources;
@@ -147,8 +144,6 @@ class ResourcePackManager{
/**
* Returns the resource pack matching the specified UUID string, or null if the ID was not recognized.
*
* @param string $id
*
* @return ResourcePack|null
*/
public function getPackById(string $id){