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