for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: siim
* Date: 15.02.19
* Time: 9:02
*/
namespace Sf4\Api\Entity\Traits;
trait CodeTrait
{
/** @var string|null $code */
protected $code;
* @return string|null
public function getCode(): ?string
return $this->code;
}
* @param string|null $code
public function setCode(?string $code): void
$this->code = $code;