I have implemented remember me functionality in Symfony2. When I log in with remember me box checked, cookie named \"REMEMBERME\" gets created. That cookie is also available
In my case, the authenticators was overided with the method supportsRememberMe:
public function supportsRememberMe() { return true; // change it to true }