InsertKoinIO / koin

Koin - a pragmatic lightweight dependency injection framework for Kotlin & Kotlin Multiplatform
https://insert-koin.io
Apache License 2.0
9.08k stars 719 forks source link

Making ScopeCallback functional interface #1731

Closed Bruce0203 closed 4 months ago

Bruce0203 commented 11 months ago

From

interface ScopeCallback {
    fun onScopeClose(scope: Scope)
}

To

fun interface ScopeCallback {
    fun onScopeClose(scope: Scope)
}
arnaudgiuliani commented 9 months ago

can you be more explicit please? 🙏

stale[bot] commented 4 months ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.