%PDF- %PDF-
| Direktori : /home/tjamichg/cursos.tjamich.gob.mx/vendor/php-xapi/model/src/Interaction/ |
| Current File : /home/tjamichg/cursos.tjamich.gob.mx/vendor/php-xapi/model/src/Interaction/InteractionComponent.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\Interaction;
use Xabbuh\XApi\Model\LanguageMap;
/**
* An XAPI activity interaction component.
*
* @author Christian Flothmann <christian.flothmann@xabbuh.de>
*/
final class InteractionComponent
{
private $id;
private $description;
public function __construct(string $id, LanguageMap $description = null)
{
$this->id = $id;
$this->description = $description;
}
public function getId(): string
{
return $this->id;
}
public function getDescription(): ?LanguageMap
{
return $this->description;
}
public function equals(InteractionComponent $interactionComponent): bool
{
if ($this->id !== $interactionComponent->id) {
return false;
}
if (null !== $this->description xor null !== $interactionComponent->description) {
return false;
}
if (null !== $this->description && null !== $interactionComponent->description && !$this->description->equals($interactionComponent->description)) {
return false;
}
return true;
}
}