Closed clue closed 11 years ago
looks cool, can you please fix this bug then I'll merge:
Fatal error: Cannot redeclare phake\resolve_runfile() (previously declared in /Users/jason/dev/projects/phake/lib/phake/utils.php:5) in /Users/jason/dev/projects/phake/lib/phake/Utils.php on line 19
Thanks for the ridiculously fast response :+1: :)
Strange error, I have just re-checked that running bin/phake
works fine here. Utils.php:19 shouldn't redeclare this function either, so I guess we have a naming issue due to lowercase utils.php and uppercase Utils.php.
Are you okay with me moving some of the logic around to avoid that situation?
yep go for it.
Alright, decided against moving the logic and went with renaming the files.
Working fine here. Can you confirm?
yep works fine here, merged.
Great! Thanks for the quick response :+1:
This PR re-organizes the code to adhere to PSR-0. This is a required to include this project as a dependency into other projects (more PRs to follow to give some more insight). It also vastly simplifies working with the source code, because each class is in an independent file.
It does NOT change any of the existing code.