FileManager   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 3
c 0
b 0
f 0
dl 0
loc 8
ccs 0
cts 2
cp 0
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getPageTitles() 0 4 1
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