File: D:/HostingSpaces/SBogers27/dndin.nl/app/KommaApp/Kms/Core/Entities/KmsTranslationPerSiteEntity.php
<?php
/**
*
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
namespace App\KommaApp\Kms\Core\Entities;
abstract class KmsTranslationPerSiteEntity extends KmsEntity
{
protected $languageId;
protected $siteId;
function __construct($siteId, $languageId, array $data = [])
{
parent::__construct($data);
$this->siteId = $siteId;
$this->languageId = $languageId;
}
public function getLanguageId()
{
return $this->languageId;
}
public function getSiteId()
{
return $this->siteId;
}
}