Completed
Push — ezp25946-migrate_files_to_othe... ( e1d3cb...7924de )
by
unknown
12:27
created

MediaFileLister   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 14
rs 10
c 0
b 0
f 0
wmc 2
lcom 0
cbo 1

2 Methods

Rating   Name   Duplication   Size   Complexity  
A countFiles() 0 5 1
A loadMetadataList() 0 5 1
1
<?php
2
3
/**
4
 * File containing the MediaFileLister class.
5
 *
6
 * @copyright Copyright (C) eZ Systems AS. All rights reserved.
7
 * @license For full copyright and license information view LICENSE file distributed with this source code.
8
 */
9
namespace eZ\Bundle\EzPublishIOBundle\Migration\FileLister;
10
11
use eZ\Bundle\EzPublishIOBundle\Migration\FileListerInterface;
12
13
class MediaFileLister extends FileLister implements FileListerInterface
14
{
15
    public function countFiles()
16
    {
17
        //TODO
18
        return 0;
19
    }
20
21
    public function loadMetadataList($limit = null, $offset = null)
22
    {
23
        //TODO
24
        return [];
25
    }
26
}
27