This file contains 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
<? | |
final class SocialNetwork { | |
function postStatus(string $newStatus) { | |
if (!$user->isLogged()) { | |
throw new Exception('User is not logged'); | |
} | |
// ... | |
} | |
function uploadProfilePicture(Picture $newPicture) { | |
if (!$user->isLogged()) { | |
throw new Exception('User is not logged'); | |
} | |
// ... | |
} | |
function sendMessage(User $recipient, Message $messageSend) { | |
if (!$user->isLogged()) { | |
throw new Exception('User is not logged'); | |
} | |
// ... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment