Thanks for quick answer, service-way it works. For the others, this is my 
service config for service id user.provider:

services:    
   user.provider:
        class: Application\UserBundle\Service\UserProvider
        arguments:
            - @database_connection

Argument database_connection contains configured DBAL connection and is 
passed as first argument to a UserProvider constructor:

class UserProvider implements UserProviderInterface
{
  protected $conn;
  
  public function __construct($db_connection)
  {      
      $this->conn = $db_connection;
  }  
  
  public function loadUserByUsername($username)
  {
    // retrieve user object implementing AccountInterface ...
  }

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

You received this message because you are subscribed to the Google
Groups "symfony developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/symfony-devs?hl=en

Reply via email to