Integrating the "userservice" with Splash

This package is part of the Mouf PHP framework and contains the @Logged annotation to bind with Splash to the UserService.

The @Logged annotation

This filter can be used in any action. If you put this annotation, the user will be denied access if he is not logged in.

/**
 * A sample default action that requires to be logged.
 *
 * @URL ("/homepage")
 * @Logged
 */
public function index() { ... }
/**
 * A sample default action that requires to be logged.
 *
 * @URL ("/homepage")
 * @Logged(middlewareName = "myUnauthorizedMiddleware")
 */
public function index() { ... }

Found a typo? Something is wrong in this documentation? Just fork and edit it!