for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JeroenDesloovere\VCard\Property;
use JeroenDesloovere\VCard\Formatter\Property\TitleFormatter;
use JeroenDesloovere\VCard\Formatter\Property\NodeFormatterInterface;
use JeroenDesloovere\VCard\Parser\Property\TitleParser;
use JeroenDesloovere\VCard\Parser\Property\NodeParserInterface;
final class Title extends SingleStringValue implements PropertyInterface, SimpleNodeInterface
{
public function getFormatter(): NodeFormatterInterface
return new TitleFormatter($this);
}
public static function getNode(): string
return 'TITLE';
public static function getParser(): NodeParserInterface
return new TitleParser();
public function isAllowedMultipleTimes(): bool
return false;