<?php
/**
*
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma Mediadesign
*/
namespace KommaApp\Kms\Core\Entities;
abstract class KmsSiteEntity extends KmsTranslatableEntity
{
public $siteId;
function __construct($siteId, array $data = [])
{
parent::__construct($data);
$this->siteId = $siteId;
}
public function getSiteId()
{
return $this->siteId;
}
}