Service ‚authenticator‘: Unable to pass arguments

Upozornění: Tohle vlákno je hodně staré a informace nemusí být platné pro současné Nette.
Taps
Člen | 169
+
0
-

Zdravím, mohl by mi někdo poradit, jak odstranit níže uvedenou chybu ?

Nette\DI\ServiceCreationException: Service 'authenticator': Unable to pass arguments, class Authenticator has no constructor

Děkuji

besir
Člen | 170
+
0
-

Mas to tam napsano :-)

nemas tam metodu __construct()

neco jako treba

class Authenticator extends \Nette\Object implements \Nette\Security\IAuthenticator {

    private $dbConnection;
    private $passwordSalt;


    public function __construct()
    {
    }
...

Editoval besir (22. 9. 2012 20:20)

Taps
Člen | 169
+
0
-

Díky