PluginProbe
Image Optimizer – Compress Images and Convert to WebP or AVIF / 1.5.1
Image Optimizer – Compress Images and Convert to WebP or AVIF v1.5.1
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
image-optimization / vendor / woocommerce / action-scheduler / deprecated / ActionScheduler_Schedule_Deprecated.php

ActionScheduler_Schedule_Deprecated.php in Image Optimizer – Compress Images and Convert to WebP or AVIF 1.5.1, at vendor/woocommerce/action-scheduler/deprecated/ActionScheduler_Schedule_Deprecated.php

30 lines 831 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Class ActionScheduler_Abstract_Schedule
5 */
6 abstract class ActionScheduler_Schedule_Deprecated implements ActionScheduler_Schedule {
7
8 /**
9 * Get the date & time this schedule was created to run, or calculate when it should be run
10 * after a given date & time.
11 *
12 * @param DateTime $after DateTime to calculate against.
13 *
14 * @return DateTime|null
15 */
16 public function next( DateTime $after = null ) {
17 if ( empty( $after ) ) {
18 $return_value = $this->get_date();
19 $replacement_method = 'get_date()';
20 } else {
21 $return_value = $this->get_next( $after );
22 $replacement_method = 'get_next( $after )';
23 }
24
25 _deprecated_function( __METHOD__, '3.0.0', __CLASS__ . '::' . $replacement_method ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
26
27 return $return_value;
28 }
29 }
30