for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Superdesk Web Publisher Bridge Component.
*
* Copyright 2017 Sourcefabric z.ú. and contributors.
* For the full copyright and license information, please see the
* AUTHORS and LICENSE files distributed with this source code.
* @copyright 2017 Sourcefabric z.ú
* @license http://www.superdesk.org/license
*/
namespace SWP\Component\Bridge\Model\Event;
class OccurStatus implements OccurStatusInterface
{
/**
* @var int
protected $id;
* @var string
protected $name;
protected $qcode;
* {@inheritdoc}
public function getId()
return $this->id;
}
public function getName()
return $this->name;
public function setName($name)
$this->name = $name;
public function getQcode()
return $this->qcode;
public function setQcode($qcode)
$this->qcode = $qcode;