-
Notifications
You must be signed in to change notification settings - Fork 46
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
Constant C3_CODECOVERAGE_MEDIATE_STORAGE can be used before it's defined #37
Comments
This like a true...
is a function definition. In this code
Function |
This is still an issue, I am using Laravel so I have made the following change: $mediateStorage = defined('C3_CODECOVERAGE_MEDIATE_STORAGE') ?
C3_CODECOVERAGE_MEDIATE_STORAGE :
'storage';
$errorLogFile = defined('C3_CODECOVERAGE_ERROR_LOG_FILE') ?
C3_CODECOVERAGE_ERROR_LOG_FILE :
$mediateStorage . DIRECTORY_SEPARATOR . 'error.txt'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If these lines fail:
due to
\Codeception\Configuration
not existing, thenis called before
is run.
The text was updated successfully, but these errors were encountered: