Remove defaultDescription from commands, as this is now part of the annotation

This commit is contained in:
Jan Böhmer 2023-05-28 01:32:04 +02:00
parent 21fc554589
commit bb1285c35c
11 changed files with 0 additions and 21 deletions

View file

@ -59,8 +59,6 @@ class ConvertBBCodeCommand extends Command
*/
protected const BBCODE_REGEX = '/\\[.+\\].*\\[\\/.+\\]/';
protected static $defaultDescription = 'Converts BBCode used in old Part-DB versions to newly used Markdown';
protected EntityManagerInterface $em;
protected PropertyAccessorInterface $propertyAccessor;
protected BBCodeToMarkdownConverter $converter;

View file

@ -37,8 +37,6 @@ use Symfony\Component\Console\Style\SymfonyStyle;
class ImportPartKeeprCommand extends Command
{
protected static $defaultDescription = 'Import a PartKeepr database XML dump into Part-DB';
protected EntityManagerInterface $em;
protected MySQLDumpXMLConverter $xml_converter;
protected PKDatastructureImporter $datastructureImporter;