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

MediaFileLister::countFiles()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
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