1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-26 18:21:02 +00:00

Some cleanup

Also, do not run the hashed_url migration into a Doctrine migration
This commit is contained in:
Jeremy Benoist 2019-04-01 14:34:20 +02:00
parent 8a64566298
commit c579ce2306
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
5 changed files with 23 additions and 15 deletions

View file

@ -20,18 +20,14 @@ class GenerateUrlHashesCommand extends ContainerAwareCommand
->setName('wallabag:generate-hashed-urls')
->setDescription('Generates hashed urls for each entry')
->setHelp('This command helps you to generates hashes of the url of each entry, to check through API if an URL is already saved')
->addArgument(
'username',
InputArgument::OPTIONAL,
'User to process entries'
);
->addArgument('username', InputArgument::OPTIONAL, 'User to process entries');
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->output = $output;
$username = $input->getArgument('username');
$username = (string) $input->getArgument('username');
if ($username) {
try {