for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CultuurNet\UDB3\Offer\Commands;
use CultuurNet\UDB3\Theme;
abstract class AbstractUpdateTheme extends AbstractCommand
{
/**
* @var Theme
*/
protected $theme;
* @param string $itemId
* @param Theme $theme
public function __construct($itemId, Theme $theme)
parent::__construct($itemId);
$this->theme = $theme;
}
* @return Theme
public function getTheme()
return $this->theme;