You are here

function ClassFinderAdapter::composerDir in X Autoload 7.4

Same name and namespace in other branches
  1. 7.5 src/Adapter/ClassFinderAdapter.php \Drupal\xautoload\Adapter\ClassFinderAdapter::composerDir()

Scan a directory containing Composer-generated autoload files.

Parameters

string $dir: Directory to look for Composer-generated files. Typically this is the ../vendor/composer dir.

Overrides ClassFinderAdapterInterface::composerDir

File

lib/Adapter/ClassFinderAdapter.php, line 109

Class

ClassFinderAdapter
An instance of this class is passed around to implementations of hook_xautoload(). It acts as a wrapper around the ClassFinder, to register stuff.

Namespace

Drupal\xautoload\Adapter

Code

function composerDir($dir) {
  $dir = ComposerDir::create($dir);
  $dir
    ->writeToAdapter($this);
}