Created
August 12, 2022 12:33
-
-
Save mikemix/f5f30342aab6429864f697006d3eb0c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
abstract class BaseUser {} | |
abstract class WebUser extends BaseUser {} | |
class RegularUser extends WebUser {} | |
class AdminUser extends RegularUser {} | |
class PowerAdminUser extends RegularUser {} | |
class WipFunctionalityUser extends RegularUser {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment