You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Command/DownloadImages.php
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -21,14 +21,14 @@ class DownloadImages extends Command
21
21
constOVERRIDE = 'override';
22
22
constFORCE = 'force';
23
23
constENV = 'env';
24
-
constIGNORE_SYNC = 'ignore-synchronization';
24
+
constINCLUDE_SYNC = 'include-synchronization';
25
25
/**#@- */
26
26
27
27
constOVERRIDE_CONFIRM_MESSAGE = "<question>Are you sure you want to override local files (y/n)[n]?</question>";
28
28
29
29
private$_override = false;
30
30
31
-
private$_ignoreSync = false;
31
+
private$_includeSync = false;
32
32
33
33
/**
34
34
* @var ObjectManagerInterface
@@ -76,7 +76,7 @@ public function __construct(
76
76
protectedfunctionconfigure()
77
77
{
78
78
$this->setName('cloudinary:download:all');
79
-
$this->setDescription('Download images from Cloudinary to the local pub/media dir. Optionally, ignore synchronization state and download everything');
79
+
$this->setDescription('Download images from Cloudinary to the local pub/media dir. Optionally, Include synchronization state and download everything');
80
80
$this->setDefinition([
81
81
newInputOption(
82
82
self::OVERRIDE,
@@ -98,10 +98,10 @@ protected function configure()
98
98
null
99
99
),
100
100
newInputOption(
101
-
self::IGNORE_SYNC,
101
+
self::INCLUDE_SYNC,
102
102
'-i',
103
103
InputOption::VALUE_NONE,
104
-
'Ignore synchronization state and download all images',
104
+
'Include synchronization state and download all images',
105
105
)
106
106
]);
107
107
}
@@ -128,11 +128,11 @@ protected function execute(InputInterface $input, OutputInterface $output)
0 commit comments