Completed
Push — feature/0.7.0 ( 38440f...02d6a4 )
by Ryuichi
07:28
created

FileProvider::tmpFileProvider()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 6
Ratio 100 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 6
loc 6
rs 9.4285
c 0
b 0
f 0
1
<?php
2
namespace WebStream\IO\Test\Providers;
3
4
use WebStream\IO\File;
5
6
/**
7
 * FileProvider
8
 * @author Ryuichi TANAKA.
9
 * @since 2016/08/19
10
 * @version 0.7
11
 */
12 View Code Duplication
trait FileProvider
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
13
{
14
    public function fileProvider()
15
    {
16
        return [
17
            [new File(dirname(__FILE__)  . "/../Fixtures/file-test1.txt")]
18
        ];
19
    }
20
21
    public function directoryProvider()
22
    {
23
        return [
24
            [new File(dirname(__FILE__)  . "/../Fixtures/file-test/")]
25
        ];
26
    }
27
28
    public function fileLinkProvider()
29
    {
30
        return [
31
            [new File(dirname(__FILE__)  . "/../Fixtures/file-test1.txt"), "/tmp/file-test-link"]
32
        ];
33
    }
34
35
    public function tmpFileProvider()
36
    {
37
        return [
38
            [new File("/tmp/file-test-tmp.txt")]
39
        ];
40
    }
41
42
    public function tmpDirectoryProvider()
43
    {
44
        return [
45
            [new File("/tmp/file-test-tmp/")]
46
        ];
47
    }
48
49
    public function renameFailureProvider()
50
    {
51
        return [
52
            [new File(dirname(__FILE__)  . "/../Fixtures/file-test/file-test2.txt")]
53
        ];
54
    }
55
}
56