Skip to content
This repository has been archived by the owner on Nov 12, 2021. It is now read-only.

Commit

Permalink
BaseClassLoader: add return type annotation to getAndRemoveLookupEntr…
Browse files Browse the repository at this point in the history
…ies()
  • Loading branch information
dktapps committed Jan 14, 2020
1 parent b0a714a commit 88052c6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions BaseClassLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ public function addPath($path, $prepend = false){
}
}


/**
* @return string[]
*/
protected function getAndRemoveLookupEntries(){
$entries = [];
while($this->lookup->count() > 0){
Expand Down

0 comments on commit 88052c6

Please sign in to comment.