public function ClassLoader::setIncludePath

Sets the base include path for all class files in the namespace of this ClassLoader.

Parameters

string $includePath:

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/ClassLoader.php, line 98

Class

ClassLoader
A <tt>ClassLoader</tt> is an autoloader for class files that can be installed on the SPL autoload stack. It is a class loader that either loads only classes of a specific namespace or all namespaces and it is suitable for working…

Namespace

Doctrine\Common

Code

public function setIncludePath($includePath) {
  $this->includePath = $includePath;
}