Fixes missing quote.
This commit is contained in:
parent
c34b5ad1a7
commit
e127274aa5
@ -33,7 +33,7 @@ The following example shows the setup of a `ClassLoader`
|
||||
// test.php
|
||||
|
||||
require '/path/to/lib/Doctrine/Common/ClassLoader.php';
|
||||
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine', '/path/to/Doctrine2/lib);
|
||||
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine', '/path/to/Doctrine2/lib');
|
||||
$classLoader->register(); // register on SPL autoload stack
|
||||
|
||||
For best class loading performance it is recommended that you keep your include_path short, ideally it should only contain the path to the PEAR libraries, and any other class libraries should be registered with their full base path.
|
||||
|
Loading…
Reference in New Issue
Block a user