Skip to content

Commit

Permalink
Fix mistakes in commented out code.
Browse files Browse the repository at this point in the history
Add missing parens and ns separators.
  • Loading branch information
markstory committed Sep 9, 2013
1 parent 8ba977c commit b47598e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions App/App/Config/bootstrap.php
Expand Up @@ -27,8 +27,8 @@
// setup in vendor/cakephp/cakephp.
/*
require $root . '/vendor/cakephp/cakephp/Cake/Core/ClassLoader.php';
(new Cake\Core\ClassLoader('App', $root))->register();
(new Cake\Core\ClassLoader('Cake', $root . '/vendor/cakephp/cakephp')->register();
(new \Cake\Core\ClassLoader('App', $root))->register();
(new \Cake\Core\ClassLoader('Cake', $root . '/vendor/cakephp/cakephp'))->register();
*/
unset($root);

Expand Down

0 comments on commit b47598e

Please sign in to comment.