Added missing function

This commit is contained in:
Pavel Lukandiy 2019-03-19 16:05:57 +05:00
parent 2df2979d8f
commit d9f7da35f1
2 changed files with 5 additions and 0 deletions

View File

@ -3,6 +3,7 @@
### 0.9.11
- **[Breaking change]**: Renamed `NumberFormat`'s `allOptions` to `allCases`
- **Fix**: Closure syntax fix. New closure naming.
- **Fix**: Added missing `BasePlaceholderView` protocol function.
### 0.9.10
- **Remove**: Removed unused scheme & target

View File

@ -75,6 +75,10 @@ open class BasePlaceholderView: UIView, InitializableView {
open func localize() {
// override in subclass
}
open func configureLayout() {
// override in subclass
}
}
public extension BasePlaceholderView {