FileManager::getPageTitles()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 4
rs 10
ccs 0
cts 1
cp 0
crap 2
1
<?php
2
/*
3
 * This file is part of dispositif/wikibot application (@github)
4
 * 2019-2023 © Philippe M./Irønie  <[email protected]>
5
 * For the full copyright and MIT license information, view the license file.
6
 */
7
8
declare(strict_types=1);
9
10
namespace App\Infrastructure;
11
12
use App\Application\InfrastructurePorts\PageListForAppInterface;
13
use App\Domain\InfrastructurePorts\PageListInterface;
14
15
class FileManager implements PageListInterface, PageListForAppInterface
16
{
17
    use CsvTrait;
18
19
    public function getPageTitles(): array
20
    {
21
        // TODO: Implement getPageTitles() method.
22
        return [];
23
    }
24
}
25