Removed superfluous method docs

This commit is contained in:
Alejandro Celaya 2018-12-19 14:31:52 +01:00
parent 2030401859
commit f8207994dc
2 changed files with 0 additions and 12 deletions

View File

@ -8,12 +8,6 @@ use Shlinkio\Shlink\Core\Entity\Tag;
class TagRepository extends EntityRepository implements TagRepositoryInterface
{
/**
* Delete the tags identified by provided names
*
* @param array $names
* @return int The number of affected entries
*/
public function deleteByName(array $names): int
{
if (empty($names)) {

View File

@ -7,11 +7,5 @@ use Doctrine\Common\Persistence\ObjectRepository;
interface TagRepositoryInterface extends ObjectRepository
{
/**
* Delete the tags identified by provided names
*
* @param array $names
* @return int The number of affected entries
*/
public function deleteByName(array $names): int;
}