Skip to content

Commit

Permalink
Merge pull request #2 from ashnazg/remove-baz
Browse files Browse the repository at this point in the history
removing the \Baz that does not exist in the path to finding Quux
  • Loading branch information
Paul M. Jones committed Aug 7, 2013
2 parents c6c4b05 + c99fe84 commit 6a33d4a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions proposed/autoloader/AutoloadTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,16 +75,16 @@
* $loader->addNamespace('Foo\Bar', '/path/to/packages/foo-bar/tests');
*
* The following line would cause the autoloader to attempt to load the
* \Foo\Bar\Baz\Qux class from /path/to/packages/foo-bar/src/Qux/Quux.php:
* \Foo\Bar\Qux\Quux class from /path/to/packages/foo-bar/src/Qux/Quux.php:
*
* <?php
* new \Foo\Bar\Baz\Qux;
* new \Foo\Bar\Qux\Quux;
*
* The following line would cause the autoloader to attempt to load the
* \Foo\Bar\Baz\Qux\QuuxTest class from /path/to/packages/foo-bar/tests/Qux/QuuxTest.php:
* \Foo\Bar\Qux\QuuxTest class from /path/to/packages/foo-bar/tests/Qux/QuuxTest.php:
*
* <?php
* new \Foo\Bar\Baz\Qux\QuuxTest;
* new \Foo\Bar\Qux\QuuxTest;
*/
class AutoloadClass
{
Expand Down

0 comments on commit 6a33d4a

Please sign in to comment.