| @@ -5,9 +5,9 @@ | ||
| 5 | 5 | use Elementor\Core\Base\Module as BaseModule; |
| 6 | 6 | use Elementor\Plugin; |
| 7 | 7 | |
| 8 | 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | - exit; // Exit if accessed directly. | |
| 9 | + exit; // Exit if accessed directly | |
| 10 | 10 | } |
| 11 | 11 | |
| 12 | 12 | abstract class Background_Task_Manager extends BaseModule { |
| 13 | 13 | /** |
| @@ -40,13 +40,10 @@ | ||
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | return $this->task_runner; |
| 43 | 43 | } |
| 44 | - /** | |
| 45 | - * @param $flag | |
| 46 | - * @return void | |
| 47 | - * // TODO: Replace with a db settings system. | |
| 48 | - */ | |
| 44 | + | |
| 45 | + // TODO: Replace with a db settings system. | |
| 49 | 46 | protected function add_flag( $flag ) { |
| 50 | 47 | add_option( $this->get_plugin_name() . '_' . $this->get_action() . '_' . $flag, 1 ); |
| 51 | 48 | } |
| 52 | 49 | |