in src/main/kotlin/com/pestphp/pest/configuration/PestRunConfiguration.kt [60:68]
fun checkAndGetState(env: ExecutionEnvironment, command: PhpCommandSettings): RunProfileState? {
try {
checkConfiguration()
} catch (ignored: RuntimeConfigurationWarning) {
} catch (exception: RuntimeConfigurationException) {
throw ExecutionException(PestBundle.message("RUNTIME_CONFIGURATION_EXCEPTION_MESSAGE", exception.localizedMessage, this.name))
}
return this.getState(env, command, null)
}