Completed
Pull Request — master (#1641)
by Naveen
01:35
created
src/wordlift/vocabulary-terms/class-vocabulary-terms-loader.php 2 patches
Indentation   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -12,44 +12,44 @@
 block discarded – undo
12 12
 use Wordlift\Vocabulary_Terms\Jsonld\Post_Jsonld;
13 13
 
14 14
 class Vocabulary_Terms_Loader extends Default_Loader {
15
-	/**
16
-	 * @var \Wordlift_Entity_Type_Service
17
-	 */
18
-	private $entity_type_service;
19
-	/**
20
-	 * @var \Wordlift_Property_Getter
21
-	 */
22
-	private $property_getter;
23
-
24
-	/**
25
-	 * Vocabulary_Terms_Loader constructor.
26
-	 *
27
-	 * @param $entity_type_service \Wordlift_Entity_Type_Service
28
-	 * @param \Wordlift_Property_Getter                         $property_getter
29
-	 */
30
-	public function __construct( $entity_type_service, $property_getter ) {
31
-		parent::__construct();
32
-		$this->entity_type_service = $entity_type_service;
33
-		$this->property_getter     = $property_getter;
34
-	}
35
-
36
-	public function init_all_dependencies() {
37
-		new Entity_Type();
38
-		new Term_Metabox();
39
-		$jsonld = new Jsonld_Generator( $this->entity_type_service, $this->property_getter );
40
-		$jsonld->init();
41
-		$term_save_hook = new Term_Save();
42
-		$term_save_hook->init();
43
-		$post_jsonld = new Post_Jsonld();
44
-		$post_jsonld->init();
45
-	}
46
-
47
-	protected function get_feature_slug() {
48
-		return 'no-vocabulary-terms';
49
-	}
50
-
51
-	protected function get_feature_default_value() {
52
-		return false;
53
-	}
15
+    /**
16
+     * @var \Wordlift_Entity_Type_Service
17
+     */
18
+    private $entity_type_service;
19
+    /**
20
+     * @var \Wordlift_Property_Getter
21
+     */
22
+    private $property_getter;
23
+
24
+    /**
25
+     * Vocabulary_Terms_Loader constructor.
26
+     *
27
+     * @param $entity_type_service \Wordlift_Entity_Type_Service
28
+     * @param \Wordlift_Property_Getter                         $property_getter
29
+     */
30
+    public function __construct( $entity_type_service, $property_getter ) {
31
+        parent::__construct();
32
+        $this->entity_type_service = $entity_type_service;
33
+        $this->property_getter     = $property_getter;
34
+    }
35
+
36
+    public function init_all_dependencies() {
37
+        new Entity_Type();
38
+        new Term_Metabox();
39
+        $jsonld = new Jsonld_Generator( $this->entity_type_service, $this->property_getter );
40
+        $jsonld->init();
41
+        $term_save_hook = new Term_Save();
42
+        $term_save_hook->init();
43
+        $post_jsonld = new Post_Jsonld();
44
+        $post_jsonld->init();
45
+    }
46
+
47
+    protected function get_feature_slug() {
48
+        return 'no-vocabulary-terms';
49
+    }
50
+
51
+    protected function get_feature_default_value() {
52
+        return false;
53
+    }
54 54
 
55 55
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 	 * @param $entity_type_service \Wordlift_Entity_Type_Service
28 28
 	 * @param \Wordlift_Property_Getter                         $property_getter
29 29
 	 */
30
-	public function __construct( $entity_type_service, $property_getter ) {
30
+	public function __construct($entity_type_service, $property_getter) {
31 31
 		parent::__construct();
32 32
 		$this->entity_type_service = $entity_type_service;
33 33
 		$this->property_getter     = $property_getter;
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 	public function init_all_dependencies() {
37 37
 		new Entity_Type();
38 38
 		new Term_Metabox();
39
-		$jsonld = new Jsonld_Generator( $this->entity_type_service, $this->property_getter );
39
+		$jsonld = new Jsonld_Generator($this->entity_type_service, $this->property_getter);
40 40
 		$jsonld->init();
41 41
 		$term_save_hook = new Term_Save();
42 42
 		$term_save_hook->init();
Please login to merge, or discard this patch.
src/wordlift/vocabulary-terms/jsonld/class-post-jsonld.php 2 patches
Indentation   +89 added lines, -89 removed lines patch added patch discarded remove patch
@@ -16,94 +16,94 @@
 block discarded – undo
16 16
 
17 17
 class Post_Jsonld {
18 18
 
19
-	public function init() {
20
-		add_filter( 'wl_post_jsonld_array', array( $this, 'wl_post_jsonld_array' ), 10, 2 );
21
-	}
22
-
23
-	public function wl_post_jsonld_array( $data, $post_id ) {
24
-
25
-		$term_references = $this->get_term_references( $post_id );
26
-
27
-		if ( ! $term_references ) {
28
-			return $data;
29
-		}
30
-
31
-		$references = $data['references'];
32
-		$jsonld     = $data['jsonld'];
33
-
34
-		$jsonld['mentions'] = $this->append_term_mentions( $jsonld, $term_references );
35
-
36
-		return array(
37
-			'jsonld'     => $jsonld,
38
-			'references' => array_merge( $references, $term_references ),
39
-		);
40
-	}
41
-
42
-	/**
43
-	 * @param $post_id
44
-	 *
45
-	 * @return array Returns a list of term references, Returns empty array if none found.
46
-	 */
47
-	private function get_term_references( $post_id ) {
48
-
49
-		/** @var WP_Taxonomy[] $taxonomies_for_post */
50
-		$taxonomies_for_post = get_object_taxonomies( get_post_type( $post_id ), 'objects' );
51
-
52
-		// now we need to collect all terms attached to this post.
53
-		$terms = array();
54
-
55
-		foreach ( $taxonomies_for_post as $taxonomy ) {
56
-			// Please note that `$taxonomy->publicly_queryable is only WP 4.7+
57
-			if ( 'wl_entity_type' === $taxonomy->name || ! $taxonomy->public ) {
58
-				continue;
59
-			}
60
-
61
-			$taxonomy_terms = get_the_terms( $post_id, $taxonomy->name );
62
-			if ( is_array( $taxonomy_terms ) ) {
63
-				$terms = array_merge( $terms, $taxonomy_terms );
64
-			}
65
-		}
66
-
67
-		// Convert everything to the Term Reference.
68
-		return array_filter(
69
-			array_map(
70
-				function ( $term ) {
71
-					/**
72
-					 * @var WP_Term $term
73
-					 */
74
-					if ( Wordpress_Term_Content_Legacy_Service::get_instance()
75
-													  ->get_entity_id( Wordpress_Content_Id::create_term( $term->term_id ) )
76
-					) {
77
-						  return new Term_Reference( $term->term_id );
78
-					}
79
-
80
-					return false;
81
-				},
82
-				$terms
83
-			)
84
-		);
85
-
86
-	}
87
-
88
-	/**
89
-	 * @param $jsonld array
90
-	 * @param $term_references array<Term_Reference>
91
-	 */
92
-	private function append_term_mentions( $jsonld, $term_references ) {
93
-
94
-		$existing_mentions = array_key_exists( 'mentions', $jsonld ) ? $jsonld['mentions'] : array();
95
-
96
-		$term_mentions = array_map(
97
-			function ( $term_reference ) {
98
-				return array(
99
-					'@id' => Wordpress_Term_Content_Legacy_Service::get_instance()
100
-															  ->get_entity_id( Wordpress_Content_Id::create_term( $term_reference->get_id() ) ),
101
-				);
102
-			},
103
-			$term_references
104
-		);
105
-
106
-		return array_merge( $existing_mentions, $term_mentions );
107
-	}
19
+    public function init() {
20
+        add_filter( 'wl_post_jsonld_array', array( $this, 'wl_post_jsonld_array' ), 10, 2 );
21
+    }
22
+
23
+    public function wl_post_jsonld_array( $data, $post_id ) {
24
+
25
+        $term_references = $this->get_term_references( $post_id );
26
+
27
+        if ( ! $term_references ) {
28
+            return $data;
29
+        }
30
+
31
+        $references = $data['references'];
32
+        $jsonld     = $data['jsonld'];
33
+
34
+        $jsonld['mentions'] = $this->append_term_mentions( $jsonld, $term_references );
35
+
36
+        return array(
37
+            'jsonld'     => $jsonld,
38
+            'references' => array_merge( $references, $term_references ),
39
+        );
40
+    }
41
+
42
+    /**
43
+     * @param $post_id
44
+     *
45
+     * @return array Returns a list of term references, Returns empty array if none found.
46
+     */
47
+    private function get_term_references( $post_id ) {
48
+
49
+        /** @var WP_Taxonomy[] $taxonomies_for_post */
50
+        $taxonomies_for_post = get_object_taxonomies( get_post_type( $post_id ), 'objects' );
51
+
52
+        // now we need to collect all terms attached to this post.
53
+        $terms = array();
54
+
55
+        foreach ( $taxonomies_for_post as $taxonomy ) {
56
+            // Please note that `$taxonomy->publicly_queryable is only WP 4.7+
57
+            if ( 'wl_entity_type' === $taxonomy->name || ! $taxonomy->public ) {
58
+                continue;
59
+            }
60
+
61
+            $taxonomy_terms = get_the_terms( $post_id, $taxonomy->name );
62
+            if ( is_array( $taxonomy_terms ) ) {
63
+                $terms = array_merge( $terms, $taxonomy_terms );
64
+            }
65
+        }
66
+
67
+        // Convert everything to the Term Reference.
68
+        return array_filter(
69
+            array_map(
70
+                function ( $term ) {
71
+                    /**
72
+                     * @var WP_Term $term
73
+                     */
74
+                    if ( Wordpress_Term_Content_Legacy_Service::get_instance()
75
+                                                        ->get_entity_id( Wordpress_Content_Id::create_term( $term->term_id ) )
76
+                    ) {
77
+                            return new Term_Reference( $term->term_id );
78
+                    }
79
+
80
+                    return false;
81
+                },
82
+                $terms
83
+            )
84
+        );
85
+
86
+    }
87
+
88
+    /**
89
+     * @param $jsonld array
90
+     * @param $term_references array<Term_Reference>
91
+     */
92
+    private function append_term_mentions( $jsonld, $term_references ) {
93
+
94
+        $existing_mentions = array_key_exists( 'mentions', $jsonld ) ? $jsonld['mentions'] : array();
95
+
96
+        $term_mentions = array_map(
97
+            function ( $term_reference ) {
98
+                return array(
99
+                    '@id' => Wordpress_Term_Content_Legacy_Service::get_instance()
100
+                                                                ->get_entity_id( Wordpress_Content_Id::create_term( $term_reference->get_id() ) ),
101
+                );
102
+            },
103
+            $term_references
104
+        );
105
+
106
+        return array_merge( $existing_mentions, $term_mentions );
107
+    }
108 108
 
109 109
 }
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -17,25 +17,25 @@  discard block
 block discarded – undo
17 17
 class Post_Jsonld {
18 18
 
19 19
 	public function init() {
20
-		add_filter( 'wl_post_jsonld_array', array( $this, 'wl_post_jsonld_array' ), 10, 2 );
20
+		add_filter('wl_post_jsonld_array', array($this, 'wl_post_jsonld_array'), 10, 2);
21 21
 	}
22 22
 
23
-	public function wl_post_jsonld_array( $data, $post_id ) {
23
+	public function wl_post_jsonld_array($data, $post_id) {
24 24
 
25
-		$term_references = $this->get_term_references( $post_id );
25
+		$term_references = $this->get_term_references($post_id);
26 26
 
27
-		if ( ! $term_references ) {
27
+		if ( ! $term_references) {
28 28
 			return $data;
29 29
 		}
30 30
 
31 31
 		$references = $data['references'];
32 32
 		$jsonld     = $data['jsonld'];
33 33
 
34
-		$jsonld['mentions'] = $this->append_term_mentions( $jsonld, $term_references );
34
+		$jsonld['mentions'] = $this->append_term_mentions($jsonld, $term_references);
35 35
 
36 36
 		return array(
37 37
 			'jsonld'     => $jsonld,
38
-			'references' => array_merge( $references, $term_references ),
38
+			'references' => array_merge($references, $term_references),
39 39
 		);
40 40
 	}
41 41
 
@@ -44,37 +44,37 @@  discard block
 block discarded – undo
44 44
 	 *
45 45
 	 * @return array Returns a list of term references, Returns empty array if none found.
46 46
 	 */
47
-	private function get_term_references( $post_id ) {
47
+	private function get_term_references($post_id) {
48 48
 
49 49
 		/** @var WP_Taxonomy[] $taxonomies_for_post */
50
-		$taxonomies_for_post = get_object_taxonomies( get_post_type( $post_id ), 'objects' );
50
+		$taxonomies_for_post = get_object_taxonomies(get_post_type($post_id), 'objects');
51 51
 
52 52
 		// now we need to collect all terms attached to this post.
53 53
 		$terms = array();
54 54
 
55
-		foreach ( $taxonomies_for_post as $taxonomy ) {
55
+		foreach ($taxonomies_for_post as $taxonomy) {
56 56
 			// Please note that `$taxonomy->publicly_queryable is only WP 4.7+
57
-			if ( 'wl_entity_type' === $taxonomy->name || ! $taxonomy->public ) {
57
+			if ('wl_entity_type' === $taxonomy->name || ! $taxonomy->public) {
58 58
 				continue;
59 59
 			}
60 60
 
61
-			$taxonomy_terms = get_the_terms( $post_id, $taxonomy->name );
62
-			if ( is_array( $taxonomy_terms ) ) {
63
-				$terms = array_merge( $terms, $taxonomy_terms );
61
+			$taxonomy_terms = get_the_terms($post_id, $taxonomy->name);
62
+			if (is_array($taxonomy_terms)) {
63
+				$terms = array_merge($terms, $taxonomy_terms);
64 64
 			}
65 65
 		}
66 66
 
67 67
 		// Convert everything to the Term Reference.
68 68
 		return array_filter(
69 69
 			array_map(
70
-				function ( $term ) {
70
+				function($term) {
71 71
 					/**
72 72
 					 * @var WP_Term $term
73 73
 					 */
74
-					if ( Wordpress_Term_Content_Legacy_Service::get_instance()
75
-													  ->get_entity_id( Wordpress_Content_Id::create_term( $term->term_id ) )
74
+					if (Wordpress_Term_Content_Legacy_Service::get_instance()
75
+													  ->get_entity_id(Wordpress_Content_Id::create_term($term->term_id))
76 76
 					) {
77
-						  return new Term_Reference( $term->term_id );
77
+						  return new Term_Reference($term->term_id);
78 78
 					}
79 79
 
80 80
 					return false;
@@ -89,21 +89,21 @@  discard block
 block discarded – undo
89 89
 	 * @param $jsonld array
90 90
 	 * @param $term_references array<Term_Reference>
91 91
 	 */
92
-	private function append_term_mentions( $jsonld, $term_references ) {
92
+	private function append_term_mentions($jsonld, $term_references) {
93 93
 
94
-		$existing_mentions = array_key_exists( 'mentions', $jsonld ) ? $jsonld['mentions'] : array();
94
+		$existing_mentions = array_key_exists('mentions', $jsonld) ? $jsonld['mentions'] : array();
95 95
 
96 96
 		$term_mentions = array_map(
97
-			function ( $term_reference ) {
97
+			function($term_reference) {
98 98
 				return array(
99 99
 					'@id' => Wordpress_Term_Content_Legacy_Service::get_instance()
100
-															  ->get_entity_id( Wordpress_Content_Id::create_term( $term_reference->get_id() ) ),
100
+															  ->get_entity_id(Wordpress_Content_Id::create_term($term_reference->get_id())),
101 101
 				);
102 102
 			},
103 103
 			$term_references
104 104
 		);
105 105
 
106
-		return array_merge( $existing_mentions, $term_mentions );
106
+		return array_merge($existing_mentions, $term_mentions);
107 107
 	}
108 108
 
109 109
 }
Please login to merge, or discard this patch.
src/wordlift/task/class-task.php 2 patches
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -4,20 +4,20 @@
 block discarded – undo
4 4
 
5 5
 interface Task {
6 6
 
7
-	/**
8
-	 * @return int The total number of items to process.
9
-	 */
10
-	public function starting();
7
+    /**
8
+     * @return int The total number of items to process.
9
+     */
10
+    public function starting();
11 11
 
12
-	/**
13
-	 * @param $value mixed The incoming value.
14
-	 * @param $args {
15
-	 *
16
-	 * @type int $offset The index of the current item.
17
-	 * @type int $count The total number of items as provided by the `starting` function.
18
-	 * @type int $batch_size The number of items to process within this call.
19
-	 * }
20
-	 */
21
-	public function tick( $value, $args );
12
+    /**
13
+     * @param $value mixed The incoming value.
14
+     * @param $args {
15
+     *
16
+     * @type int $offset The index of the current item.
17
+     * @type int $count The total number of items as provided by the `starting` function.
18
+     * @type int $batch_size The number of items to process within this call.
19
+     * }
20
+     */
21
+    public function tick( $value, $args );
22 22
 
23 23
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,6 +18,6 @@
 block discarded – undo
18 18
 	 * @type int $batch_size The number of items to process within this call.
19 19
 	 * }
20 20
 	 */
21
-	public function tick( $value, $args );
21
+	public function tick($value, $args);
22 22
 
23 23
 }
Please login to merge, or discard this patch.
src/wordlift/task/background/class-background-task-stopped-state.php 2 patches
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -4,31 +4,31 @@
 block discarded – undo
4 4
 
5 5
 class Background_Task_Stopped_State extends Abstract_Background_Task_State {
6 6
 
7
-	/**
8
-	 * @var Background_Task
9
-	 */
10
-	private $context;
7
+    /**
8
+     * @var Background_Task
9
+     */
10
+    private $context;
11 11
 
12
-	public function __construct( $context ) {
13
-		parent::__construct( $context, Background_Task::STATE_STOPPED );
12
+    public function __construct( $context ) {
13
+        parent::__construct( $context, Background_Task::STATE_STOPPED );
14 14
 
15
-		$this->context = $context;
16
-	}
15
+        $this->context = $context;
16
+    }
17 17
 
18
-	public function enter() {
19
-		$this->context->set_state( Background_Task::STATE_STOPPED );
20
-	}
18
+    public function enter() {
19
+        $this->context->set_state( Background_Task::STATE_STOPPED );
20
+    }
21 21
 
22
-	public function leave() {
23
-		$this->context->set_state( null );
24
-	}
22
+    public function leave() {
23
+        $this->context->set_state( null );
24
+    }
25 25
 
26
-	// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
27
-	public function task( $value ) {
26
+    // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
27
+    public function task( $value ) {
28 28
 
29
-		$this->context->cancel_process();
29
+        $this->context->cancel_process();
30 30
 
31
-		return false;
32
-	}
31
+        return false;
32
+    }
33 33
 
34 34
 }
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,22 +9,22 @@
 block discarded – undo
9 9
 	 */
10 10
 	private $context;
11 11
 
12
-	public function __construct( $context ) {
13
-		parent::__construct( $context, Background_Task::STATE_STOPPED );
12
+	public function __construct($context) {
13
+		parent::__construct($context, Background_Task::STATE_STOPPED);
14 14
 
15 15
 		$this->context = $context;
16 16
 	}
17 17
 
18 18
 	public function enter() {
19
-		$this->context->set_state( Background_Task::STATE_STOPPED );
19
+		$this->context->set_state(Background_Task::STATE_STOPPED);
20 20
 	}
21 21
 
22 22
 	public function leave() {
23
-		$this->context->set_state( null );
23
+		$this->context->set_state(null);
24 24
 	}
25 25
 
26 26
 	// phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
27
-	public function task( $value ) {
27
+	public function task($value) {
28 28
 
29 29
 		$this->context->cancel_process();
30 30
 
Please login to merge, or discard this patch.
src/wordlift/task/background/class-background-task-page.php 2 patches
Indentation   +72 added lines, -72 removed lines patch added patch discarded remove patch
@@ -8,73 +8,73 @@  discard block
 block discarded – undo
8 8
 
9 9
 class Background_Task_Page {
10 10
 
11
-	private $title;
12
-
13
-	private $menu_slug;
14
-
15
-	/**
16
-	 * @var Background_Task_Route $background_task_route
17
-	 */
18
-	private $background_task_route;
19
-
20
-	/**
21
-	 * @throws Exception if one or more parameters are invalid.
22
-	 */
23
-	public function __construct( $title, $menu_slug, $background_task_route ) {
24
-		Assertions::not_empty( $title, '`$title` cannot be empty.' );
25
-		Assertions::not_empty( $menu_slug, '`$menu_slug` cannot be empty.' );
26
-		Assertions::is_a( $background_task_route, 'Wordlift\Task\Background\Background_Task_Route', '`Background_Task_Route` must be of type `Wordlift\Task\Background\Background_Route`.' );
27
-
28
-		add_action( 'admin_menu', array( $this, 'admin_menu' ) );
29
-
30
-		$this->title                 = $title;
31
-		$this->menu_slug             = $menu_slug;
32
-		$this->background_task_route = $background_task_route;
33
-	}
34
-
35
-	/**
36
-	 * @throws Exception if one or more parameters are invalid.
37
-	 */
38
-	public static function create( $title, $menu_slug, $background_route ) {
39
-		return new self( $title, $menu_slug, $background_route );
40
-	}
41
-
42
-	public function admin_menu() {
43
-
44
-		add_submenu_page(
45
-			'wl_admin_menu',
46
-			$this->title,
47
-			$this->title,
48
-			'manage_options',
49
-			$this->menu_slug,
50
-			array(
51
-				$this,
52
-				'render',
53
-			)
54
-		);
55
-
56
-	}
57
-
58
-	public function render() {
59
-
60
-		wp_enqueue_style(
61
-			'wl-task-page',
62
-			plugin_dir_url( __FILE__ ) . 'assets/task-page.css',
63
-			array(),
64
-			Wordlift::get_instance()->get_version(),
65
-			'all'
66
-		);
67
-
68
-		wp_enqueue_script(
69
-			'wl-task-page',
70
-			plugin_dir_url( __FILE__ ) . 'assets/task-page.js',
71
-			array( 'wp-api' ),
72
-			WORDLIFT_VERSION,
73
-			false
74
-		);
75
-
76
-		wp_localize_script( 'wl-task-page', '_wlTaskPageSettings', array( 'rest_path' => $this->background_task_route->get_rest_path() ) );
77
-		?>
11
+    private $title;
12
+
13
+    private $menu_slug;
14
+
15
+    /**
16
+     * @var Background_Task_Route $background_task_route
17
+     */
18
+    private $background_task_route;
19
+
20
+    /**
21
+     * @throws Exception if one or more parameters are invalid.
22
+     */
23
+    public function __construct( $title, $menu_slug, $background_task_route ) {
24
+        Assertions::not_empty( $title, '`$title` cannot be empty.' );
25
+        Assertions::not_empty( $menu_slug, '`$menu_slug` cannot be empty.' );
26
+        Assertions::is_a( $background_task_route, 'Wordlift\Task\Background\Background_Task_Route', '`Background_Task_Route` must be of type `Wordlift\Task\Background\Background_Route`.' );
27
+
28
+        add_action( 'admin_menu', array( $this, 'admin_menu' ) );
29
+
30
+        $this->title                 = $title;
31
+        $this->menu_slug             = $menu_slug;
32
+        $this->background_task_route = $background_task_route;
33
+    }
34
+
35
+    /**
36
+     * @throws Exception if one or more parameters are invalid.
37
+     */
38
+    public static function create( $title, $menu_slug, $background_route ) {
39
+        return new self( $title, $menu_slug, $background_route );
40
+    }
41
+
42
+    public function admin_menu() {
43
+
44
+        add_submenu_page(
45
+            'wl_admin_menu',
46
+            $this->title,
47
+            $this->title,
48
+            'manage_options',
49
+            $this->menu_slug,
50
+            array(
51
+                $this,
52
+                'render',
53
+            )
54
+        );
55
+
56
+    }
57
+
58
+    public function render() {
59
+
60
+        wp_enqueue_style(
61
+            'wl-task-page',
62
+            plugin_dir_url( __FILE__ ) . 'assets/task-page.css',
63
+            array(),
64
+            Wordlift::get_instance()->get_version(),
65
+            'all'
66
+        );
67
+
68
+        wp_enqueue_script(
69
+            'wl-task-page',
70
+            plugin_dir_url( __FILE__ ) . 'assets/task-page.js',
71
+            array( 'wp-api' ),
72
+            WORDLIFT_VERSION,
73
+            false
74
+        );
75
+
76
+        wp_localize_script( 'wl-task-page', '_wlTaskPageSettings', array( 'rest_path' => $this->background_task_route->get_rest_path() ) );
77
+        ?>
78 78
 		<div class="wrap">
79 79
 			<h2><?php echo esc_html( $this->title ); ?></h2>
80 80
 
@@ -85,17 +85,17 @@  discard block
 block discarded – undo
85 85
 
86 86
 			<button id="wl-start-btn" type="button" class="button button-large button-primary">
87 87
 			<?php
88
-				esc_html_e( 'Start', 'wordlift' );
89
-			?>
88
+                esc_html_e( 'Start', 'wordlift' );
89
+            ?>
90 90
 				</button>
91 91
 			<button id="wl-stop-btn" type="button" class="button button-large button-primary hidden">
92 92
 			<?php
93
-				esc_html_e( 'Stop', 'wordlift' );
94
-			?>
93
+                esc_html_e( 'Stop', 'wordlift' );
94
+            ?>
95 95
 				</button>
96 96
 
97 97
 		</div>
98 98
 		<?php
99
-	}
99
+    }
100 100
 
101 101
 }
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -20,12 +20,12 @@  discard block
 block discarded – undo
20 20
 	/**
21 21
 	 * @throws Exception if one or more parameters are invalid.
22 22
 	 */
23
-	public function __construct( $title, $menu_slug, $background_task_route ) {
24
-		Assertions::not_empty( $title, '`$title` cannot be empty.' );
25
-		Assertions::not_empty( $menu_slug, '`$menu_slug` cannot be empty.' );
26
-		Assertions::is_a( $background_task_route, 'Wordlift\Task\Background\Background_Task_Route', '`Background_Task_Route` must be of type `Wordlift\Task\Background\Background_Route`.' );
23
+	public function __construct($title, $menu_slug, $background_task_route) {
24
+		Assertions::not_empty($title, '`$title` cannot be empty.');
25
+		Assertions::not_empty($menu_slug, '`$menu_slug` cannot be empty.');
26
+		Assertions::is_a($background_task_route, 'Wordlift\Task\Background\Background_Task_Route', '`Background_Task_Route` must be of type `Wordlift\Task\Background\Background_Route`.');
27 27
 
28
-		add_action( 'admin_menu', array( $this, 'admin_menu' ) );
28
+		add_action('admin_menu', array($this, 'admin_menu'));
29 29
 
30 30
 		$this->title                 = $title;
31 31
 		$this->menu_slug             = $menu_slug;
@@ -35,8 +35,8 @@  discard block
 block discarded – undo
35 35
 	/**
36 36
 	 * @throws Exception if one or more parameters are invalid.
37 37
 	 */
38
-	public static function create( $title, $menu_slug, $background_route ) {
39
-		return new self( $title, $menu_slug, $background_route );
38
+	public static function create($title, $menu_slug, $background_route) {
39
+		return new self($title, $menu_slug, $background_route);
40 40
 	}
41 41
 
42 42
 	public function admin_menu() {
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
 		wp_enqueue_style(
61 61
 			'wl-task-page',
62
-			plugin_dir_url( __FILE__ ) . 'assets/task-page.css',
62
+			plugin_dir_url(__FILE__).'assets/task-page.css',
63 63
 			array(),
64 64
 			Wordlift::get_instance()->get_version(),
65 65
 			'all'
@@ -67,16 +67,16 @@  discard block
 block discarded – undo
67 67
 
68 68
 		wp_enqueue_script(
69 69
 			'wl-task-page',
70
-			plugin_dir_url( __FILE__ ) . 'assets/task-page.js',
71
-			array( 'wp-api' ),
70
+			plugin_dir_url(__FILE__).'assets/task-page.js',
71
+			array('wp-api'),
72 72
 			WORDLIFT_VERSION,
73 73
 			false
74 74
 		);
75 75
 
76
-		wp_localize_script( 'wl-task-page', '_wlTaskPageSettings', array( 'rest_path' => $this->background_task_route->get_rest_path() ) );
76
+		wp_localize_script('wl-task-page', '_wlTaskPageSettings', array('rest_path' => $this->background_task_route->get_rest_path()));
77 77
 		?>
78 78
 		<div class="wrap">
79
-			<h2><?php echo esc_html( $this->title ); ?></h2>
79
+			<h2><?php echo esc_html($this->title); ?></h2>
80 80
 
81 81
 			<div class="wl-task__progress" style="border: 1px solid #23282D; height: 20px; margin: 8px 0;">
82 82
 				<div class="wl-task__progress__bar"
@@ -85,12 +85,12 @@  discard block
 block discarded – undo
85 85
 
86 86
 			<button id="wl-start-btn" type="button" class="button button-large button-primary">
87 87
 			<?php
88
-				esc_html_e( 'Start', 'wordlift' );
88
+				esc_html_e('Start', 'wordlift');
89 89
 			?>
90 90
 				</button>
91 91
 			<button id="wl-stop-btn" type="button" class="button button-large button-primary hidden">
92 92
 			<?php
93
-				esc_html_e( 'Stop', 'wordlift' );
93
+				esc_html_e('Stop', 'wordlift');
94 94
 			?>
95 95
 				</button>
96 96
 
Please login to merge, or discard this patch.
src/wordlift/task/background/class-background-task-route.php 2 patches
Indentation   +82 added lines, -82 removed lines patch added patch discarded remove patch
@@ -8,87 +8,87 @@
 block discarded – undo
8 8
 
9 9
 class Background_Task_Route {
10 10
 
11
-	const VERSION_STRING = 'wordlift/v1';
12
-
13
-	/**
14
-	 * @var Background_Task
15
-	 */
16
-	private $background_task;
17
-
18
-	/**
19
-	 * @var string
20
-	 */
21
-	private $route_name;
22
-
23
-	public function __construct( $background_task, $route_name ) {
24
-		$this->background_task = $background_task;
25
-		$this->route_name      = $route_name;
26
-	}
27
-
28
-	public static function create( $task, $route_name ) {
29
-		$route = new self( $task, $route_name );
30
-
31
-		add_action( 'rest_api_init', array( $route, 'register' ) );
32
-
33
-		return $route;
34
-	}
35
-
36
-	/**
37
-	 * @throws Exception if the input value is invalid.
38
-	 */
39
-	public function register() {
40
-		Assertions::starts_with( $this->route_name, '/', 'The route name must start with a slash.' );
41
-
42
-		register_rest_route(
43
-			self::VERSION_STRING,
44
-			$this->route_name,
45
-			array(
46
-				'methods'             => WP_REST_Server::CREATABLE,
47
-				'callback'            => array( $this->background_task, 'start' ),
48
-				'permission_callback' => array( $this, 'permission_callback' ),
49
-			)
50
-		);
51
-
52
-		register_rest_route(
53
-			self::VERSION_STRING,
54
-			$this->route_name,
55
-			array(
56
-				'methods'             => WP_REST_Server::READABLE,
57
-				'callback'            => array( $this->background_task, 'get_info' ),
58
-				'permission_callback' => array( $this, 'permission_callback' ),
59
-			)
60
-		);
61
-
62
-		register_rest_route(
63
-			self::VERSION_STRING,
64
-			$this->route_name,
65
-			array(
66
-				'methods'             => WP_REST_Server::DELETABLE,
67
-				'callback'            => array( $this->background_task, 'stop' ),
68
-				'permission_callback' => array( $this, 'permission_callback' ),
69
-			)
70
-		);
71
-
72
-		register_rest_route(
73
-			self::VERSION_STRING,
74
-			$this->route_name,
75
-			array(
76
-				'methods'             => 'PUT',
77
-				'callback'            => array( $this->background_task, 'resume' ),
78
-				'permission_callback' => array( $this, 'permission_callback' ),
79
-			)
80
-		);
81
-
82
-	}
83
-
84
-	public function permission_callback() {
85
-		$user = wp_get_current_user();
86
-
87
-		return is_super_admin( $user->ID ) || in_array( 'administrator', (array) $user->roles, true );
88
-	}
89
-
90
-	public function get_rest_path() {
91
-		return self::VERSION_STRING . $this->route_name;
92
-	}
11
+    const VERSION_STRING = 'wordlift/v1';
12
+
13
+    /**
14
+     * @var Background_Task
15
+     */
16
+    private $background_task;
17
+
18
+    /**
19
+     * @var string
20
+     */
21
+    private $route_name;
22
+
23
+    public function __construct( $background_task, $route_name ) {
24
+        $this->background_task = $background_task;
25
+        $this->route_name      = $route_name;
26
+    }
27
+
28
+    public static function create( $task, $route_name ) {
29
+        $route = new self( $task, $route_name );
30
+
31
+        add_action( 'rest_api_init', array( $route, 'register' ) );
32
+
33
+        return $route;
34
+    }
35
+
36
+    /**
37
+     * @throws Exception if the input value is invalid.
38
+     */
39
+    public function register() {
40
+        Assertions::starts_with( $this->route_name, '/', 'The route name must start with a slash.' );
41
+
42
+        register_rest_route(
43
+            self::VERSION_STRING,
44
+            $this->route_name,
45
+            array(
46
+                'methods'             => WP_REST_Server::CREATABLE,
47
+                'callback'            => array( $this->background_task, 'start' ),
48
+                'permission_callback' => array( $this, 'permission_callback' ),
49
+            )
50
+        );
51
+
52
+        register_rest_route(
53
+            self::VERSION_STRING,
54
+            $this->route_name,
55
+            array(
56
+                'methods'             => WP_REST_Server::READABLE,
57
+                'callback'            => array( $this->background_task, 'get_info' ),
58
+                'permission_callback' => array( $this, 'permission_callback' ),
59
+            )
60
+        );
61
+
62
+        register_rest_route(
63
+            self::VERSION_STRING,
64
+            $this->route_name,
65
+            array(
66
+                'methods'             => WP_REST_Server::DELETABLE,
67
+                'callback'            => array( $this->background_task, 'stop' ),
68
+                'permission_callback' => array( $this, 'permission_callback' ),
69
+            )
70
+        );
71
+
72
+        register_rest_route(
73
+            self::VERSION_STRING,
74
+            $this->route_name,
75
+            array(
76
+                'methods'             => 'PUT',
77
+                'callback'            => array( $this->background_task, 'resume' ),
78
+                'permission_callback' => array( $this, 'permission_callback' ),
79
+            )
80
+        );
81
+
82
+    }
83
+
84
+    public function permission_callback() {
85
+        $user = wp_get_current_user();
86
+
87
+        return is_super_admin( $user->ID ) || in_array( 'administrator', (array) $user->roles, true );
88
+    }
89
+
90
+    public function get_rest_path() {
91
+        return self::VERSION_STRING . $this->route_name;
92
+    }
93 93
 
94 94
 }
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -20,15 +20,15 @@  discard block
 block discarded – undo
20 20
 	 */
21 21
 	private $route_name;
22 22
 
23
-	public function __construct( $background_task, $route_name ) {
23
+	public function __construct($background_task, $route_name) {
24 24
 		$this->background_task = $background_task;
25 25
 		$this->route_name      = $route_name;
26 26
 	}
27 27
 
28
-	public static function create( $task, $route_name ) {
29
-		$route = new self( $task, $route_name );
28
+	public static function create($task, $route_name) {
29
+		$route = new self($task, $route_name);
30 30
 
31
-		add_action( 'rest_api_init', array( $route, 'register' ) );
31
+		add_action('rest_api_init', array($route, 'register'));
32 32
 
33 33
 		return $route;
34 34
 	}
@@ -37,15 +37,15 @@  discard block
 block discarded – undo
37 37
 	 * @throws Exception if the input value is invalid.
38 38
 	 */
39 39
 	public function register() {
40
-		Assertions::starts_with( $this->route_name, '/', 'The route name must start with a slash.' );
40
+		Assertions::starts_with($this->route_name, '/', 'The route name must start with a slash.');
41 41
 
42 42
 		register_rest_route(
43 43
 			self::VERSION_STRING,
44 44
 			$this->route_name,
45 45
 			array(
46 46
 				'methods'             => WP_REST_Server::CREATABLE,
47
-				'callback'            => array( $this->background_task, 'start' ),
48
-				'permission_callback' => array( $this, 'permission_callback' ),
47
+				'callback'            => array($this->background_task, 'start'),
48
+				'permission_callback' => array($this, 'permission_callback'),
49 49
 			)
50 50
 		);
51 51
 
@@ -54,8 +54,8 @@  discard block
 block discarded – undo
54 54
 			$this->route_name,
55 55
 			array(
56 56
 				'methods'             => WP_REST_Server::READABLE,
57
-				'callback'            => array( $this->background_task, 'get_info' ),
58
-				'permission_callback' => array( $this, 'permission_callback' ),
57
+				'callback'            => array($this->background_task, 'get_info'),
58
+				'permission_callback' => array($this, 'permission_callback'),
59 59
 			)
60 60
 		);
61 61
 
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
 			$this->route_name,
65 65
 			array(
66 66
 				'methods'             => WP_REST_Server::DELETABLE,
67
-				'callback'            => array( $this->background_task, 'stop' ),
68
-				'permission_callback' => array( $this, 'permission_callback' ),
67
+				'callback'            => array($this->background_task, 'stop'),
68
+				'permission_callback' => array($this, 'permission_callback'),
69 69
 			)
70 70
 		);
71 71
 
@@ -74,8 +74,8 @@  discard block
 block discarded – undo
74 74
 			$this->route_name,
75 75
 			array(
76 76
 				'methods'             => 'PUT',
77
-				'callback'            => array( $this->background_task, 'resume' ),
78
-				'permission_callback' => array( $this, 'permission_callback' ),
77
+				'callback'            => array($this->background_task, 'resume'),
78
+				'permission_callback' => array($this, 'permission_callback'),
79 79
 			)
80 80
 		);
81 81
 
@@ -84,11 +84,11 @@  discard block
 block discarded – undo
84 84
 	public function permission_callback() {
85 85
 		$user = wp_get_current_user();
86 86
 
87
-		return is_super_admin( $user->ID ) || in_array( 'administrator', (array) $user->roles, true );
87
+		return is_super_admin($user->ID) || in_array('administrator', (array) $user->roles, true);
88 88
 	}
89 89
 
90 90
 	public function get_rest_path() {
91
-		return self::VERSION_STRING . $this->route_name;
91
+		return self::VERSION_STRING.$this->route_name;
92 92
 	}
93 93
 
94 94
 }
Please login to merge, or discard this patch.
src/wordlift/task/background/class-background-task-started-state.php 2 patches
Indentation   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -4,79 +4,79 @@
 block discarded – undo
4 4
 
5 5
 class Background_Task_Started_State extends Abstract_Background_Task_State {
6 6
 
7
-	/**
8
-	 * @var Background_Task
9
-	 */
10
-	private $context;
7
+    /**
8
+     * @var Background_Task
9
+     */
10
+    private $context;
11 11
 
12
-	private $batch_size = 5;
12
+    private $batch_size = 5;
13 13
 
14
-	/**
15
-	 * @var Task
16
-	 */
17
-	private $task;
14
+    /**
15
+     * @var Task
16
+     */
17
+    private $task;
18 18
 
19
-	/**
20
-	 * Back_Started_State constructor.
21
-	 *
22
-	 * @param Background_Task $context
23
-	 */
24
-	public function __construct( $context, $task ) {
25
-		parent::__construct( $context, Background_Task::STATE_STARTED );
19
+    /**
20
+     * Back_Started_State constructor.
21
+     *
22
+     * @param Background_Task $context
23
+     */
24
+    public function __construct( $context, $task ) {
25
+        parent::__construct( $context, Background_Task::STATE_STARTED );
26 26
 
27
-		$this->context = $context;
28
-		$this->task    = $task;
29
-	}
27
+        $this->context = $context;
28
+        $this->task    = $task;
29
+    }
30 30
 
31
-	public function enter() {
31
+    public function enter() {
32 32
 
33
-		$count = $this->task->starting();
33
+        $count = $this->task->starting();
34 34
 
35
-		update_option( $this->context->get_option_prefix() . 'count', $count, true );
36
-		update_option( $this->context->get_option_prefix() . 'offset', 0, true );
37
-		update_option( $this->context->get_option_prefix() . 'started', time(), true );
38
-		update_option( $this->context->get_option_prefix() . 'updated', time(), true );
35
+        update_option( $this->context->get_option_prefix() . 'count', $count, true );
36
+        update_option( $this->context->get_option_prefix() . 'offset', 0, true );
37
+        update_option( $this->context->get_option_prefix() . 'started', time(), true );
38
+        update_option( $this->context->get_option_prefix() . 'updated', time(), true );
39 39
 
40
-		$this->context->set_state( Background_Task::STATE_STARTED );
40
+        $this->context->set_state( Background_Task::STATE_STARTED );
41 41
 
42
-		$this->resume();
43
-	}
42
+        $this->resume();
43
+    }
44 44
 
45
-	public function resume() {
46
-		$this->context->push_to_queue( true );
47
-		$this->context->save()->dispatch();
48
-	}
45
+    public function resume() {
46
+        $this->context->push_to_queue( true );
47
+        $this->context->save()->dispatch();
48
+    }
49 49
 
50
-	public function leave() {
51
-		$this->context->set_state( null );
52
-	}
50
+    public function leave() {
51
+        $this->context->set_state( null );
52
+    }
53 53
 
54
-	public function task( $value ) {
55
-		$offset = get_option( $this->context->get_option_prefix() . 'offset' );
56
-		$count  = get_option( $this->context->get_option_prefix() . 'count' );
54
+    public function task( $value ) {
55
+        $offset = get_option( $this->context->get_option_prefix() . 'offset' );
56
+        $count  = get_option( $this->context->get_option_prefix() . 'count' );
57 57
 
58
-		$this->task->tick(
59
-			$value,
60
-			array(
61
-				'offset'     => $offset,
62
-				'count'      => $count,
63
-				'batch_size' => $this->batch_size,
64
-			)
65
-		);
58
+        $this->task->tick(
59
+            $value,
60
+            array(
61
+                'offset'     => $offset,
62
+                'count'      => $count,
63
+                'batch_size' => $this->batch_size,
64
+            )
65
+        );
66 66
 
67
-		update_option( $this->context->get_option_prefix() . 'updated', time(), true );
67
+        update_option( $this->context->get_option_prefix() . 'updated', time(), true );
68 68
 
69
-		// Increase the offset.
70
-		if ( ( $offset + $this->batch_size ) < $count ) {
71
-			update_option( $this->context->get_option_prefix() . 'offset', $offset + $this->batch_size, true );
69
+        // Increase the offset.
70
+        if ( ( $offset + $this->batch_size ) < $count ) {
71
+            update_option( $this->context->get_option_prefix() . 'offset', $offset + $this->batch_size, true );
72 72
 
73
-			return true;
74
-		}
73
+            return true;
74
+        }
75 75
 
76
-		// Stop processing.
77
-		$this->context->stop();
76
+        // Stop processing.
77
+        $this->context->stop();
78 78
 
79
-		return false;
80
-	}
79
+        return false;
80
+    }
81 81
 
82 82
 }
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
 	 *
22 22
 	 * @param Background_Task $context
23 23
 	 */
24
-	public function __construct( $context, $task ) {
25
-		parent::__construct( $context, Background_Task::STATE_STARTED );
24
+	public function __construct($context, $task) {
25
+		parent::__construct($context, Background_Task::STATE_STARTED);
26 26
 
27 27
 		$this->context = $context;
28 28
 		$this->task    = $task;
@@ -32,28 +32,28 @@  discard block
 block discarded – undo
32 32
 
33 33
 		$count = $this->task->starting();
34 34
 
35
-		update_option( $this->context->get_option_prefix() . 'count', $count, true );
36
-		update_option( $this->context->get_option_prefix() . 'offset', 0, true );
37
-		update_option( $this->context->get_option_prefix() . 'started', time(), true );
38
-		update_option( $this->context->get_option_prefix() . 'updated', time(), true );
35
+		update_option($this->context->get_option_prefix().'count', $count, true);
36
+		update_option($this->context->get_option_prefix().'offset', 0, true);
37
+		update_option($this->context->get_option_prefix().'started', time(), true);
38
+		update_option($this->context->get_option_prefix().'updated', time(), true);
39 39
 
40
-		$this->context->set_state( Background_Task::STATE_STARTED );
40
+		$this->context->set_state(Background_Task::STATE_STARTED);
41 41
 
42 42
 		$this->resume();
43 43
 	}
44 44
 
45 45
 	public function resume() {
46
-		$this->context->push_to_queue( true );
46
+		$this->context->push_to_queue(true);
47 47
 		$this->context->save()->dispatch();
48 48
 	}
49 49
 
50 50
 	public function leave() {
51
-		$this->context->set_state( null );
51
+		$this->context->set_state(null);
52 52
 	}
53 53
 
54
-	public function task( $value ) {
55
-		$offset = get_option( $this->context->get_option_prefix() . 'offset' );
56
-		$count  = get_option( $this->context->get_option_prefix() . 'count' );
54
+	public function task($value) {
55
+		$offset = get_option($this->context->get_option_prefix().'offset');
56
+		$count  = get_option($this->context->get_option_prefix().'count');
57 57
 
58 58
 		$this->task->tick(
59 59
 			$value,
@@ -64,11 +64,11 @@  discard block
 block discarded – undo
64 64
 			)
65 65
 		);
66 66
 
67
-		update_option( $this->context->get_option_prefix() . 'updated', time(), true );
67
+		update_option($this->context->get_option_prefix().'updated', time(), true);
68 68
 
69 69
 		// Increase the offset.
70
-		if ( ( $offset + $this->batch_size ) < $count ) {
71
-			update_option( $this->context->get_option_prefix() . 'offset', $offset + $this->batch_size, true );
70
+		if (($offset + $this->batch_size) < $count) {
71
+			update_option($this->context->get_option_prefix().'offset', $offset + $this->batch_size, true);
72 72
 
73 73
 			return true;
74 74
 		}
Please login to merge, or discard this patch.
src/wordlift/task/background/class-abstract-background-task-state.php 2 patches
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -4,32 +4,32 @@
 block discarded – undo
4 4
 
5 5
 abstract class Abstract_Background_Task_State implements Background_Task_State {
6 6
 
7
-	/**
8
-	 * @var Background_Task_State
9
-	 */
10
-	private $state;
11
-
12
-	/**
13
-	 * @var Background_Task
14
-	 */
15
-	private $context;
16
-
17
-	public function __construct( $context, $state ) {
18
-		$this->state   = $state;
19
-		$this->context = $context;
20
-	}
21
-
22
-	public function get_info() {
23
-		$started     = get_option( $this->context->get_option_prefix() . 'started' );
24
-		$offset      = get_option( $this->context->get_option_prefix() . 'offset' );
25
-		$count       = get_option( $this->context->get_option_prefix() . 'count', array( 0 ) );
26
-		$last_update = get_option( $this->context->get_option_prefix() . 'updated' );
27
-
28
-		return new Background_Task_Info( $this->state, $started, $offset, $count, $last_update );
29
-	}
30
-
31
-	public function resume() {
32
-		// do nothing.
33
-	}
7
+    /**
8
+     * @var Background_Task_State
9
+     */
10
+    private $state;
11
+
12
+    /**
13
+     * @var Background_Task
14
+     */
15
+    private $context;
16
+
17
+    public function __construct( $context, $state ) {
18
+        $this->state   = $state;
19
+        $this->context = $context;
20
+    }
21
+
22
+    public function get_info() {
23
+        $started     = get_option( $this->context->get_option_prefix() . 'started' );
24
+        $offset      = get_option( $this->context->get_option_prefix() . 'offset' );
25
+        $count       = get_option( $this->context->get_option_prefix() . 'count', array( 0 ) );
26
+        $last_update = get_option( $this->context->get_option_prefix() . 'updated' );
27
+
28
+        return new Background_Task_Info( $this->state, $started, $offset, $count, $last_update );
29
+    }
30
+
31
+    public function resume() {
32
+        // do nothing.
33
+    }
34 34
 
35 35
 }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -14,18 +14,18 @@
 block discarded – undo
14 14
 	 */
15 15
 	private $context;
16 16
 
17
-	public function __construct( $context, $state ) {
17
+	public function __construct($context, $state) {
18 18
 		$this->state   = $state;
19 19
 		$this->context = $context;
20 20
 	}
21 21
 
22 22
 	public function get_info() {
23
-		$started     = get_option( $this->context->get_option_prefix() . 'started' );
24
-		$offset      = get_option( $this->context->get_option_prefix() . 'offset' );
25
-		$count       = get_option( $this->context->get_option_prefix() . 'count', array( 0 ) );
26
-		$last_update = get_option( $this->context->get_option_prefix() . 'updated' );
23
+		$started     = get_option($this->context->get_option_prefix().'started');
24
+		$offset      = get_option($this->context->get_option_prefix().'offset');
25
+		$count       = get_option($this->context->get_option_prefix().'count', array(0));
26
+		$last_update = get_option($this->context->get_option_prefix().'updated');
27 27
 
28
-		return new Background_Task_Info( $this->state, $started, $offset, $count, $last_update );
28
+		return new Background_Task_Info($this->state, $started, $offset, $count, $last_update);
29 29
 	}
30 30
 
31 31
 	public function resume() {
Please login to merge, or discard this patch.
src/wordlift/task/background/class-background-task-state.php 2 patches
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -4,29 +4,29 @@
 block discarded – undo
4 4
 
5 5
 interface Background_Task_State {
6 6
 
7
-	public function enter();
8
-
9
-	public function leave();
10
-
11
-	/**
12
-	 * Task
13
-	 *
14
-	 * Override this method to perform any actions required on each
15
-	 * queue item. Return the modified item for further processing
16
-	 * in the next pass through. Or, return false to remove the
17
-	 * item from the queue.
18
-	 *
19
-	 * @param mixed $item Queue item to iterate over.
20
-	 *
21
-	 * @return mixed
22
-	 */
23
-	public function task( $item );
24
-
25
-	public function get_info();
26
-
27
-	/**
28
-	 * Try to resume an interrupted task.
29
-	 */
30
-	public function resume();
7
+    public function enter();
8
+
9
+    public function leave();
10
+
11
+    /**
12
+     * Task
13
+     *
14
+     * Override this method to perform any actions required on each
15
+     * queue item. Return the modified item for further processing
16
+     * in the next pass through. Or, return false to remove the
17
+     * item from the queue.
18
+     *
19
+     * @param mixed $item Queue item to iterate over.
20
+     *
21
+     * @return mixed
22
+     */
23
+    public function task( $item );
24
+
25
+    public function get_info();
26
+
27
+    /**
28
+     * Try to resume an interrupted task.
29
+     */
30
+    public function resume();
31 31
 
32 32
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 	 *
21 21
 	 * @return mixed
22 22
 	 */
23
-	public function task( $item );
23
+	public function task($item);
24 24
 
25 25
 	public function get_info();
26 26
 
Please login to merge, or discard this patch.