%PDF- %PDF-
| Direktori : /home/tjamichg/cursos.tjamich.gob.mx/vendor/php-xapi/model/src/ |
| Current File : /home/tjamichg/cursos.tjamich.gob.mx/vendor/php-xapi/model/src/Account.php |
<?php
/*
* This file is part of the xAPI package.
*
* (c) Christian Flothmann <christian.flothmann@xabbuh.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Xabbuh\XApi\Model;
/**
* A user account on an existing system.
*
* @author Christian Flothmann <christian.flothmann@xabbuh.de>
*/
final class Account
{
private $name;
private $homePage;
public function __construct(string $name, IRL $homePage)
{
$this->name = $name;
$this->homePage = $homePage;
}
/**
* Returns the unique id or name used to log in to this account.
*/
public function getName(): string
{
return $this->name;
}
/**
* Returns the home page for the system the account is on.
*/
public function getHomePage(): IRL
{
return $this->homePage;
}
/**
* Checks if another account is equal.
*
* Two accounts are equal if and only if all of their properties are equal.
*/
public function equals(Account $account): bool
{
if ($this->name !== $account->name) {
return false;
}
if (!$this->homePage->equals($account->homePage)) {
return false;
}
return true;
}
}