• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Yoast / wordpress-seo / 7704002dce66ee49e19b195a4080a1c0ebb135a5

07 Nov 2025 10:56AM UTC coverage: 49.286% (-0.2%) from 49.527%
7704002dce66ee49e19b195a4080a1c0ebb135a5

Pull #22691

github

web-flow
Merge d0a18e231 into 91790256a
Pull Request #22691: Initialize the backend work needed for the tasklist.

7 of 184 new or added lines in 13 files covered. (3.8%)

17497 of 35501 relevant lines covered (49.29%)

3.89 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/task-list/domain/abstract-completeable-task.php
1
<?php
2
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
3
namespace Yoast\WP\SEO\Task_List\Domain;
4

5
/**
6
 * Abstract class for a completeable task.
7
 */
8
abstract class Abstract_Completeable_Task extends Abstract_Task implements Completeable_Task_Interface {
9

10
        /**
11
         * Returns an array representation of the completeable task config data.
12
         *
13
         * @return array<string, string|bool> Returns in an array format.
14
         */
NEW
15
        public function config_to_array(): array {
×
NEW
16
                $config                    = parent::config_to_array();
×
NEW
17
                $config['is_completeable'] = true;
×
18

NEW
19
                return $config;
×
20
        }
21
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc