Skip to content

Commit

Permalink
Update bin/classmap_generator.php
Browse files Browse the repository at this point in the history
Removed space
  • Loading branch information
RWOverdijk committed Aug 10, 2012
1 parent ef46a2c commit c027cb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/classmap_generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
$zfLibraryPath = getenv('LIB_PATH') ? getenv('LIB_PATH') : __DIR__ . '/../library';
if (is_dir($zfLibraryPath)) {
// Try to load StandardAutoloader from library
if (false === include ($zfLibraryPath . '/Zend/Loader/StandardAutoloader.php')) {
if (false === include($zfLibraryPath . '/Zend/Loader/StandardAutoloader.php')) {
echo 'Unable to locate autoloader via library; aborting' . PHP_EOL;
exit(2);
}
} else {
// Try to load StandardAutoloader from include_path
if (false === include ('Zend/Loader/StandardAutoloader.php')) {
if (false === include('Zend/Loader/StandardAutoloader.php')) {
echo 'Unable to locate autoloader via include_path; aborting' . PHP_EOL;
exit(2);
}
Expand Down

0 comments on commit c027cb9

Please sign in to comment.