Hi folks,
Hopefully a quick and easy clarification only...With this code found in an action in a controller:
...
$SaveAccount = new SaveAccount();
$SaveAccount->saveAccount($username, $password, $email);
...
Does the second line mean "run the method "saveAccount()" on the new object? Is that what the ->
means?
Thanks!