StreamedCopyTrait::copy()   B
last analyzed

Complexity

Conditions 5
Paths 3

Size

Total Lines 16
Code Lines 8

Duplication

Lines 16
Ratio 100 %

Code Coverage

Tests 0
CRAP Score 30

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 16
loc 16
ccs 0
cts 11
cp 0
rs 8.8571
cc 5
eloc 8
nc 3
nop 2
crap 30
1
<?php
2
3
namespace League\Flysystem\Adapter\Polyfill;
4
5
use League\Flysystem\Config;
6
7
trait StreamedCopyTrait
8
{
9
    /**
10
     * Copy a file.
11
     *
12
     * @param string $path
13
     * @param string $newpath
14
     *
15
     * @return bool
16
     */
17 View Code Duplication
    public function copy($path, $newpath)
0 ignored issues
show
Duplication introduced by
This method 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...
18
    {
19
        $response = $this->readStream($path);
20
21
        if ($response === false || ! is_resource($response['stream'])) {
22
            return false;
23
        }
24
25
        $result = $this->writeStream($newpath, $response['stream'], new Config());
26
27
        if ($result !== false && is_resource($response['stream'])) {
28
            fclose($response['stream']);
29
        }
30
31
        return $result !== false;
32
    }
33
34
    // Required abstract method
35
36
    /**
37
     * @param string $path
38
     */
39
    abstract public function readStream($path);
40
41
    /**
42
     * @param string $path
43
     */
44
    abstract public function writeStream($path, $resource, Config $config);
45
}
46