Deprecated tags creation

This commit is contained in:
Alejandro Celaya
2020-11-02 11:05:14 +01:00
parent 397f7d09e3
commit 544836b986
5 changed files with 7 additions and 2 deletions

View File

@@ -12,6 +12,7 @@ use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
/** @deprecated */
class CreateTagCommand extends Command
{
public const NAME = 'tag:create';
@@ -28,7 +29,7 @@ class CreateTagCommand extends Command
{
$this
->setName(self::NAME)
->setDescription('Creates one or more tags.')
->setDescription('[Deprecated] Creates one or more tags.')
->addOption(
'name',
't',

View File

@@ -58,6 +58,7 @@ class TagService implements TagServiceInterface
/**
* Provided a list of tag names, creates all that do not exist yet
*
* @deprecated
* @param string[] $tagNames
* @return Collection|Tag[]
*/

View File

@@ -28,6 +28,7 @@ interface TagServiceInterface
public function deleteTags(array $tagNames): void;
/**
* @deprecated
* @param string[] $tagNames
* @return Collection|Tag[]
*/

View File

@@ -10,6 +10,7 @@ use Psr\Http\Message\ServerRequestInterface;
use Shlinkio\Shlink\Core\Tag\TagServiceInterface;
use Shlinkio\Shlink\Rest\Action\AbstractRestAction;
/** @deprecated */
class CreateTagsAction extends AbstractRestAction
{
protected const ROUTE_PATH = '/tags';