Skip to content

Commit

Permalink
#135 documenting further internal types, return types, removing redun…
Browse files Browse the repository at this point in the history
…dant docblocks
  • Loading branch information
Ocramius committed Jul 22, 2017
1 parent 9e36fc4 commit 8de0ebc
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions lib/Doctrine/Common/Annotations/AnnotationRegistry.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ final class AnnotationRegistry
*
* This autoloading mechanism does not utilize the PHP autoloading but implements autoloading on its own.
*
* @var array
* @var string[][]|string[]|null[]
*/
static private $autoloadNamespaces = [];

/**
* A map of autoloader callables.
*
* @var array
* @var callable[]
*/
static private $loaders = [];

Expand All @@ -47,10 +47,7 @@ final class AnnotationRegistry
*/
static private $failedToAutoload = [];

/**
* @return void
*/
public static function reset()
public static function reset() : void
{
self::$autoloadNamespaces = [];
self::$loaders = [];
Expand Down

0 comments on commit 8de0ebc

Please sign in to comment.