for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JeroenDesloovere\VCard\Formatter\Property;
use JeroenDesloovere\VCard\Property\Note;
class NoteFormatter extends PropertyFormatter implements PropertyFormatterInterface
{
/**
* @var Note
*/
protected $note;
public function __construct(Note $note)
$this->note = $note;
}
public function getVcfString(): string
return $this->note->getNode() . ':' . $this->escape($this->note->getValue());