Test Failed
Pull Request — master (#494)
by
unknown
03:32
created

CommentService   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getFeedPaginator() 0 4 1
A __construct() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace App\Modules\Blog\Comment;
6
7
use Yiisoft\Data\Paginator\KeysetPaginator;
8
9
final class CommentService
10
{
11
    private const COMMENTS_FEED_PER_PAGE = 10;
12
13
    public function __construct(private CommentRepository $repository)
14
    {
15
    }
16
17
    public function getFeedPaginator(): KeysetPaginator
18
    {
19
        return (new KeysetPaginator($this->repository->getReader()))
20
            ->withPageSize(self::COMMENTS_FEED_PER_PAGE);
21
    }
22
}
23