Composer\Autoload
ClassLoader::setUseIncludePath
Turns on searching the include path for class files.
Method of the class: ClassLoader{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ClassLoader = new ClassLoader(); $ClassLoader->setUseIncludePath( $useIncludePath );
- $useIncludePath(true|false) (required)
- .
ClassLoader::setUseIncludePath() ClassLoader::setUseIncludePath code ACF 6.8.8
public function setUseIncludePath($useIncludePath)
{
$this->useIncludePath = $useIncludePath;
}