You are here

function ProxyClassFinder::getFinder in X Autoload 7.5

Same name and namespace in other branches
  1. 7.4 lib/ClassFinder/ProxyClassFinder.php \Drupal\xautoload\ClassFinder\ProxyClassFinder::getFinder()

Return value

ClassFinderInterface

File

src/ClassFinder/ProxyClassFinder.php, line 72

Class

ProxyClassFinder
A placeholder class finder. Used to postpone expensive operations until they are actually needed.

Namespace

Drupal\xautoload\ClassFinder

Code

function getFinder() {
  $this
    ->initFinder();
  return $this->finder;
}