mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-21 01:25:55 +02:00
Remove defaultDescription from commands, as this is now part of the annotation
This commit is contained in:
parent
21fc554589
commit
bb1285c35c
11 changed files with 0 additions and 21 deletions
|
@ -43,8 +43,6 @@ use const DIRECTORY_SEPARATOR;
|
||||||
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:attachments:clean-unused|app:clean-attachments', 'Lists (and deletes if wanted) attachments files that are not used anymore (abandoned files).')]
|
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:attachments:clean-unused|app:clean-attachments', 'Lists (and deletes if wanted) attachments files that are not used anymore (abandoned files).')]
|
||||||
class CleanAttachmentsCommand extends Command
|
class CleanAttachmentsCommand extends Command
|
||||||
{
|
{
|
||||||
protected static $defaultDescription = 'Lists (and deletes if wanted) attachments files that are not used anymore (abandoned files).';
|
|
||||||
|
|
||||||
protected AttachmentManager $attachment_helper;
|
protected AttachmentManager $attachment_helper;
|
||||||
protected AttachmentReverseSearch $reverseSearch;
|
protected AttachmentReverseSearch $reverseSearch;
|
||||||
protected MimeTypes $mimeTypeGuesser;
|
protected MimeTypes $mimeTypeGuesser;
|
||||||
|
|
|
@ -30,8 +30,6 @@ use Symfony\Component\DependencyInjection\ParameterBag\ContainerBagInterface;
|
||||||
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:check-requirements', 'Checks if the requirements Part-DB needs or recommends are fulfilled.')]
|
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:check-requirements', 'Checks if the requirements Part-DB needs or recommends are fulfilled.')]
|
||||||
class CheckRequirementsCommand extends Command
|
class CheckRequirementsCommand extends Command
|
||||||
{
|
{
|
||||||
protected static $defaultDescription = 'Checks if the requirements Part-DB needs or recommends are fulfilled.';
|
|
||||||
|
|
||||||
protected ContainerBagInterface $params;
|
protected ContainerBagInterface $params;
|
||||||
|
|
||||||
public function __construct(ContainerBagInterface $params)
|
public function __construct(ContainerBagInterface $params)
|
||||||
|
|
|
@ -38,8 +38,6 @@ use function strlen;
|
||||||
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:currencies:update-exchange-rates|partdb:update-exchange-rates|app:update-exchange-rates', 'Updates the currency exchange rates.')]
|
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:currencies:update-exchange-rates|partdb:update-exchange-rates|app:update-exchange-rates', 'Updates the currency exchange rates.')]
|
||||||
class UpdateExchangeRatesCommand extends Command
|
class UpdateExchangeRatesCommand extends Command
|
||||||
{
|
{
|
||||||
protected static $defaultDescription = 'Updates the currency exchange rates.';
|
|
||||||
|
|
||||||
protected string $base_current;
|
protected string $base_current;
|
||||||
protected EntityManagerInterface $em;
|
protected EntityManagerInterface $em;
|
||||||
protected ExchangeRateUpdater $exchangeRateUpdater;
|
protected ExchangeRateUpdater $exchangeRateUpdater;
|
||||||
|
|
|
@ -39,7 +39,6 @@ use Symfony\Contracts\Translation\TranslatorInterface;
|
||||||
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:logs:show|app:show-logs', 'List the last event log entries.')]
|
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:logs:show|app:show-logs', 'List the last event log entries.')]
|
||||||
class ShowEventLogCommand extends Command
|
class ShowEventLogCommand extends Command
|
||||||
{
|
{
|
||||||
protected static $defaultDescription = 'List the last event log entries.';
|
|
||||||
protected EntityManagerInterface $entityManager;
|
protected EntityManagerInterface $entityManager;
|
||||||
protected TranslatorInterface $translator;
|
protected TranslatorInterface $translator;
|
||||||
protected ElementTypeNameGenerator $elementTypeNameGenerator;
|
protected ElementTypeNameGenerator $elementTypeNameGenerator;
|
||||||
|
|
|
@ -59,8 +59,6 @@ class ConvertBBCodeCommand extends Command
|
||||||
*/
|
*/
|
||||||
protected const BBCODE_REGEX = '/\\[.+\\].*\\[\\/.+\\]/';
|
protected const BBCODE_REGEX = '/\\[.+\\].*\\[\\/.+\\]/';
|
||||||
|
|
||||||
protected static $defaultDescription = 'Converts BBCode used in old Part-DB versions to newly used Markdown';
|
|
||||||
|
|
||||||
protected EntityManagerInterface $em;
|
protected EntityManagerInterface $em;
|
||||||
protected PropertyAccessorInterface $propertyAccessor;
|
protected PropertyAccessorInterface $propertyAccessor;
|
||||||
protected BBCodeToMarkdownConverter $converter;
|
protected BBCodeToMarkdownConverter $converter;
|
||||||
|
|
|
@ -37,8 +37,6 @@ use Symfony\Component\Console\Style\SymfonyStyle;
|
||||||
class ImportPartKeeprCommand extends Command
|
class ImportPartKeeprCommand extends Command
|
||||||
{
|
{
|
||||||
|
|
||||||
protected static $defaultDescription = 'Import a PartKeepr database XML dump into Part-DB';
|
|
||||||
|
|
||||||
protected EntityManagerInterface $em;
|
protected EntityManagerInterface $em;
|
||||||
protected MySQLDumpXMLConverter $xml_converter;
|
protected MySQLDumpXMLConverter $xml_converter;
|
||||||
protected PKDatastructureImporter $datastructureImporter;
|
protected PKDatastructureImporter $datastructureImporter;
|
||||||
|
|
|
@ -33,8 +33,6 @@ use Symfony\Component\Console\Style\SymfonyStyle;
|
||||||
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:user:convert-to-saml-user|partdb:users:convert-to-saml-user', 'Converts a local user to a SAML user (and vice versa)')]
|
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:user:convert-to-saml-user|partdb:users:convert-to-saml-user', 'Converts a local user to a SAML user (and vice versa)')]
|
||||||
class ConvertToSAMLUserCommand extends Command
|
class ConvertToSAMLUserCommand extends Command
|
||||||
{
|
{
|
||||||
protected static $defaultDescription = 'Converts a local user to a SAML user (and vice versa)';
|
|
||||||
|
|
||||||
protected EntityManagerInterface $entityManager;
|
protected EntityManagerInterface $entityManager;
|
||||||
protected bool $saml_enabled;
|
protected bool $saml_enabled;
|
||||||
|
|
||||||
|
|
|
@ -37,8 +37,6 @@ use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
|
||||||
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:users:set-password|app:set-password|users:set-password|partdb:user:set-password', 'Sets the password of a user')]
|
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:users:set-password|app:set-password|users:set-password|partdb:user:set-password', 'Sets the password of a user')]
|
||||||
class SetPasswordCommand extends Command
|
class SetPasswordCommand extends Command
|
||||||
{
|
{
|
||||||
protected static $defaultDescription = 'Sets the password of a user';
|
|
||||||
|
|
||||||
protected EntityManagerInterface $entityManager;
|
protected EntityManagerInterface $entityManager;
|
||||||
protected UserPasswordHasherInterface $encoder;
|
protected UserPasswordHasherInterface $encoder;
|
||||||
protected EventDispatcherInterface $eventDispatcher;
|
protected EventDispatcherInterface $eventDispatcher;
|
||||||
|
|
|
@ -32,8 +32,6 @@ use Symfony\Component\Console\Style\SymfonyStyle;
|
||||||
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:users:enable|partdb:user:enable', 'Enables/Disable the login of one or more users')]
|
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:users:enable|partdb:user:enable', 'Enables/Disable the login of one or more users')]
|
||||||
class UserEnableCommand extends Command
|
class UserEnableCommand extends Command
|
||||||
{
|
{
|
||||||
protected static $defaultDescription = 'Enables/Disable the login of one or more users';
|
|
||||||
|
|
||||||
protected EntityManagerInterface $entityManager;
|
protected EntityManagerInterface $entityManager;
|
||||||
|
|
||||||
public function __construct(EntityManagerInterface $entityManager, string $name = null)
|
public function __construct(EntityManagerInterface $entityManager, string $name = null)
|
||||||
|
|
|
@ -31,8 +31,6 @@ use Symfony\Component\Console\Style\SymfonyStyle;
|
||||||
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:users:list|users:list', 'Lists all users')]
|
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:users:list|users:list', 'Lists all users')]
|
||||||
class UserListCommand extends Command
|
class UserListCommand extends Command
|
||||||
{
|
{
|
||||||
protected static $defaultDescription = 'Lists all users';
|
|
||||||
|
|
||||||
protected EntityManagerInterface $entityManager;
|
protected EntityManagerInterface $entityManager;
|
||||||
|
|
||||||
public function __construct(EntityManagerInterface $entityManager)
|
public function __construct(EntityManagerInterface $entityManager)
|
||||||
|
|
|
@ -30,8 +30,6 @@ use Symfony\Component\Console\Style\SymfonyStyle;
|
||||||
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:version|app:version', 'Shows the currently installed version of Part-DB.')]
|
#[\Symfony\Component\Console\Attribute\AsCommand('partdb:version|app:version', 'Shows the currently installed version of Part-DB.')]
|
||||||
class VersionCommand extends Command
|
class VersionCommand extends Command
|
||||||
{
|
{
|
||||||
protected static $defaultDescription = 'Shows the currently installed version of Part-DB.';
|
|
||||||
|
|
||||||
protected VersionManagerInterface $versionManager;
|
protected VersionManagerInterface $versionManager;
|
||||||
protected GitVersionInfo $gitVersionInfo;
|
protected GitVersionInfo $gitVersionInfo;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue