Skip to content

Instantly share code, notes, and snippets.

@joanmolinas
Last active March 8, 2018 19:32
Show Gist options
  • Save joanmolinas/4e94f71425effda3b3627a61b06ce5e5 to your computer and use it in GitHub Desktop.
Save joanmolinas/4e94f71425effda3b3627a61b06ce5e5 to your computer and use it in GitHub Desktop.
class ContentController {
func show() {
// Do stuff
}
}
class SubscriptorContentController: ContentController {
override func show() {
guard user.type == .suscriptor else { return }
super.show()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment