Bee-Lab/BeelabTagBundle

View on GitHub
src/Tag/TagInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Beelab\TagBundle\Tag;

interface TagInterface
{
    public function setName(?string $name): void;

    public function getName(): ?string;
}