for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JeroenDesloovere\VCard\Property\Parameter;
use JeroenDesloovere\VCard\Formatter\Property\NodeFormatterInterface;
use JeroenDesloovere\VCard\Formatter\Property\Parameter\RevisionFormatter;
use JeroenDesloovere\VCard\Parser\Property\NodeParserInterface;
use JeroenDesloovere\VCard\Parser\Property\RevisionParser;
use JeroenDesloovere\VCard\Property\DateTimeValue;
use JeroenDesloovere\VCard\Property\SimpleNodeInterface;
final class Revision extends DateTimeValue implements PropertyParameterInterface, SimpleNodeInterface
{
public function getFormatter(): NodeFormatterInterface
return new RevisionFormatter($this);
}
public static function getNode(): string
return 'REV';
public static function getParser(): NodeParserInterface
return new RevisionParser();