About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
marcov4lente
3/7/2015 - 2:41 PM
share
Share
add_circle_outline
Save
PHP class and method visibility.
PHP class and method visibility.
phpClassVisibility.md
content_copy
file_download
Rendered
Source
###Public
Accessible from within it's class.
Accessible from another that has extended its class.
Accessible externally, via the instance.
###Protected
Accessible from within it's class.
Accessible from another that has extended its class.
Not accessible externally, via the instance.
###Private
Accessible from within it's class.
Not accessible from another that has extended its class.
Not accessible externally, via the instance.
clear