10000 [ClassLoader] A PSR-4 compatible class loader by derrabus · Pull Request #10100 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[ClassLoader] A PSR-4 compatible class loader #10100

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
CS fixes
  • Loading branch information
derrabus committed Jan 22, 2014
commit cc2ef32ae40e846cb779d39b3cce0837375aee08
6 changes: 2 additions & 4 deletions src/Symfony/Component/ClassLoader/Psr4ClassLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,12 @@ public function findFile($class)
}
}
}

return;
}

/**
* @param string $class
*
* @return bool
* @return Boolean
*/
public function loadClass($class)
{
Expand All @@ -79,7 +77,7 @@ public function loadClass($class)
/**
* Registers this instance as an autoloader.
*
* @param bool $prepend
* @param Boolean $prepend
*/
public function register($prepend = false)
{
Expand Down
0