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\Language;
use ValueObjects\StringLiteral\StringLiteral;
abstract class AbstractUpdateTitle extends AbstractTranslatePropertyCommand
{
/**
* @var string
*/
protected $title;
* @param string $itemId
* @param Language $language
* @param StringLiteral $title
public function __construct($itemId, Language $language, StringLiteral $title)
parent::__construct($itemId, $language);
$this->title = $title;
$title
object<ValueObjects\StringLiteral\StringLiteral>
string
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..
}
* @return StringLiteral
public function getTitle()
return $this->title;
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..