mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-18 17:58:37 +01:00
Remove unused argument from ProfileImageWorkflow
Summary: Ref T10319. Removing an unused arg from the workflow script for building profile images. Test Plan: Rerun `bin/people profileimage --users chad 007 --force` Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T10319 Differential Revision: https://secure.phabricator.com/D17466
This commit is contained in:
parent
3a868940c7
commit
19ecd0be65
1 changed files with 0 additions and 6 deletions
|
@ -10,11 +10,6 @@ final class PhabricatorPeopleProfileImageWorkflow
|
||||||
->setSynopsis(pht('Generate default profile images.'))
|
->setSynopsis(pht('Generate default profile images.'))
|
||||||
->setArguments(
|
->setArguments(
|
||||||
array(
|
array(
|
||||||
array(
|
|
||||||
'name' => 'user',
|
|
||||||
'help' => pht(
|
|
||||||
'Generate a default profile image for a specific user'),
|
|
||||||
),
|
|
||||||
array(
|
array(
|
||||||
'name' => 'all',
|
'name' => 'all',
|
||||||
'help' => pht(
|
'help' => pht(
|
||||||
|
@ -38,7 +33,6 @@ final class PhabricatorPeopleProfileImageWorkflow
|
||||||
|
|
||||||
$is_force = $args->getArg('force');
|
$is_force = $args->getArg('force');
|
||||||
$is_all = $args->getArg('all');
|
$is_all = $args->getArg('all');
|
||||||
$is_user = $args->getArg('user');
|
|
||||||
|
|
||||||
$gd = function_exists('imagecreatefromstring');
|
$gd = function_exists('imagecreatefromstring');
|
||||||
if (!$gd) {
|
if (!$gd) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue