StreamedReadingTrait::read()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 1
ccs 0
cts 0
cp 0
nc 1
1
<?php
2
3
namespace League\Flysystem\Adapter\Polyfill;
4
5
/**
6
 * A helper for adapters that only handle strings to provide read streams.
7
 */
8
trait StreamedReadingTrait
9
{
10
    /**
11
     * Reads a file as a stream.
12
     *
13
     * @param string $path
14
     *
15
     * @return array|false
16
     *
17
     * @see League\Flysystem\ReadInterface::readStream()
18
     */
19 View Code Duplication
    public function readStream($path)
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...
20
    {
21
        if ( ! $data = $this->read($path)) {
22
            return false;
23
        }
24
25
        $stream = fopen('php://temp', 'w+b');
26
        fwrite($stream, $data['contents']);
27
        rewind($stream);
28
        $data['stream'] = $stream;
29
        unset($data['contents']);
30
31
        return $data;
32
    }
33
34
    /**
35
     * Reads a file.
36
     *
37
     * @param string $path
38
     *
39
     * @return array|false
40
     *
41
     * @see League\Flysystem\ReadInterface::read()
42
     */
43
    abstract public function read($path);
44
}
45