1
0
mirror of synced 2024-12-15 15:46:02 +03:00

Fixes missing quote.

This commit is contained in:
Rich Bowen 2010-05-24 15:34:58 -04:00
parent c34b5ad1a7
commit e127274aa5

View File

@ -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.