PluginProbe
Image Optimizer – Compress Images and Convert to WebP or AVIF / 1.7.7
Image Optimizer – Compress Images and Convert to WebP or AVIF v1.7.7
1.7.7 1.7.6 1.7.5 1.7.4 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.2.0 1.2.1 1.3.0 1.4.0 1.4.1 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 All 33 releases
← All changes | vendor/woocommerce/action-scheduler/classes/migration/Config.php +30 -6 1.5.4 → 1.7.7 View file →
@@ -16,24 +16,48 @@
16 16 *
17 17 * A config builder for the ActionScheduler\Migration\Runner class
18 18 */
19 19 class Config {
20 - /** @var ActionScheduler_Store */
20 + /**
21 + * Source store instance.
22 + *
23 + * @var ActionScheduler_Store
24 + */
21 25 private $source_store;
22 26
23 - /** @var ActionScheduler_Logger */
27 + /**
28 + * Source logger instance.
29 + *
30 + * @var ActionScheduler_Logger
31 + */
24 32 private $source_logger;
25 33
26 - /** @var ActionScheduler_Store */
34 + /**
35 + * Destination store instance.
36 + *
37 + * @var ActionScheduler_Store
38 + */
27 39 private $destination_store;
28 40
29 - /** @var ActionScheduler_Logger */
41 + /**
42 + * Destination logger instance.
43 + *
44 + * @var ActionScheduler_Logger
45 + */
30 46 private $destination_logger;
31 47
32 - /** @var Progress bar */
48 + /**
49 + * Progress bar object.
50 + *
51 + * @var Action_Scheduler\WP_CLI\ProgressBar
52 + */
33 53 private $progress_bar;
34 54
35 - /** @var bool */
55 + /**
56 + * Flag indicating a dryrun.
57 + *
58 + * @var bool
59 + */
36 60 private $dry_run = false;
37 61
38 62 /**
39 63 * Config constructor.