for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sprain\SwissQrBill\PaymentPart\Output\Element;
class Title implements OutputElementInterface
{
private $title;
public static function create(string $title)
$element = new self();
$element->title = $title;
return $element;
}
public function getTitle(): ?string
return $this->title;