-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
7 changed files
with
273 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
// @codingStandardsIgnoreFile | ||
// @codeCoverageIgnoreStart | ||
// this is an autogenerated file - do not edit | ||
spl_autoload_register( | ||
function($class) use ($vendor) { | ||
static $classes = null; | ||
if ($classes === null) { | ||
$classes = array( | ||
___CLASSLIST___ | ||
); | ||
} | ||
$cn = strtolower($class); | ||
if (isset($classes[$cn])) { | ||
require $vendor . '/' . $classes[$cn]; | ||
} | ||
} | ||
); | ||
// @codeCoverageIgnoreEnd | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
@theseer With existing and fresh installs of phpdox, I am always getting the message that I need to set up project dependencies with composer. If you're looking for the vendor directory is think you need DIR . '/../../../vendor'. DIR is reporting as vendor/theseer/phpdox.
Thank you.