phpdoc armageddon for master, pass 1

This commit is contained in:
Dylan K. Taylor
2020-01-22 11:55:03 +00:00
parent 4bae3baa74
commit 67bcc1c0fb
397 changed files with 0 additions and 5391 deletions

View File

@ -39,9 +39,6 @@ trait RegistryTrait{
/**
* Adds the given object to the registry.
*
* @param string $name
* @param object $member
*
* @throws \InvalidArgumentException
*/
private static function _registryRegister(string $name, object $member) : void{
@ -72,9 +69,6 @@ trait RegistryTrait{
}
/**
* @param string $name
*
* @return object
* @throws \InvalidArgumentException
*/
private static function _registryFromString(string $name) : object{
@ -113,8 +107,6 @@ trait RegistryTrait{
/**
* Generates code for static methods for all known registry members.
*
* @return string
*/
public static function _generateGetters() : string{
$lines = [];
@ -132,8 +124,6 @@ public static function %1$s() : %2$s{
/**
* Generates a block of @ method annotations for accessors for this registry's known members.
*
* @return string
*/
public static function _generateMethodAnnotations() : string{
$traitName = (new \ReflectionClass(__TRAIT__))->getShortName();