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\NicknameFormatter;
use JeroenDesloovere\VCard\Formatter\Property\NodeFormatterInterface;
use JeroenDesloovere\VCard\Parser\Property\NicknameParser;
use JeroenDesloovere\VCard\Parser\Property\NodeParserInterface;
final class Nickname extends SingleStringValue implements PropertyInterface, SimpleNodeInterface
{
public function getFormatter(): NodeFormatterInterface
return new NicknameFormatter($this);
}
public static function getNode(): string
return 'NICKNAME';
public static function getParser(): NodeParserInterface
return new NicknameParser();
public function isAllowedMultipleTimes(): bool
return false;