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

Yoast / wordpress-seo / a7886492b145fdf70261f7ca2cb0fbcb3562b15b

25 Nov 2024 01:47PM UTC coverage: 54.184% (-0.03%) from 54.215%
a7886492b145fdf70261f7ca2cb0fbcb3562b15b

Pull #21852

github

web-flow
Merge b930e736a into 16577a01e
Pull Request #21852: 339 dashboard use request to get the actual scores

7593 of 13670 branches covered (55.54%)

Branch coverage included in aggregate %.

0 of 77 new or added lines in 15 files covered. (0.0%)

989 existing lines in 3 files now uncovered.

29764 of 55275 relevant lines covered (53.85%)

41521.03 hits per line

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

0.0
/src/dashboard/application/endpoints/endpoints-repository.php
1
<?php
2
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
3
namespace Yoast\WP\SEO\Dashboard\Application\Endpoints;
4

5
use Yoast\WP\SEO\Dashboard\Domain\Endpoint\Endpoint_Interface;
6
use Yoast\WP\SEO\Dashboard\Domain\Endpoint\Endpoint_List;
7

8
/**
9
 * Repository for endpoints.
10
 */
11
class Endpoints_Repository {
12

13
        /**
14
         * Holds the endpoints.
15
         *
16
         * @var array<Endpoint_Interface>
17
         */
18
        private $endpoints;
19

20
        /**
21
         * Constructs the repository.
22
         *
23
         * @param Endpoint_Interface ...$endpoints The endpoints to add to the repository.
24
         */
NEW
25
        public function __construct( Endpoint_Interface ...$endpoints ) {
×
NEW
26
                $this->endpoints = $endpoints;
×
27
        }
28

29
        /**
30
         * Creates a list with all endpoints.
31
         *
32
         * @return Endpoint_List The list with all endpoints.
33
         */
NEW
34
        public function get_all_endpoints(): Endpoint_List {
×
NEW
35
                $list = new Endpoint_List();
×
NEW
36
                foreach ( $this->endpoints as $endpoint ) {
×
NEW
37
                        $list->add_endpoint( $endpoint );
×
38
                }
39

NEW
40
                return $list;
×
41
        }
42
}
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

© 2025 Coveralls, Inc