Standard\Controllers\AccountController::__invoke PHP Method

__invoke() public method

Example of an invokable class, i.e. a class that has an __invoke() method.
See also: http://php.net/manual/en/language.oop5.magic.php#object.invoke
public __invoke ( )
    public function __invoke()
    {
        echo $this->twig->render('account/home.twig', ['user' => ['firstName' => $this->user->firstName, 'lastName' => $this->user->lastName]]);
    }