Passed
Pull Request — main (#22)
by Andrey
28:59 queued 16:23
created

File::delete()   A

Complexity

Conditions 4
Paths 4

Size

Total Lines 17
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
cc 4
eloc 9
nc 4
nop 1
dl 0
loc 17
rs 9.9666
c 1
b 1
f 0
1
<?php
2
3
namespace Helldar\Support\Helpers\Filesystem;
4
5
use DirectoryIterator;
6
use ErrorException;
7
use Helldar\Support\Facades\Helpers\Arr;
8
use Helldar\Support\Facades\Helpers\Filesystem\Directory;
0 ignored issues
show
Bug introduced by
This use statement conflicts with another class in this namespace, Helldar\Support\Helpers\Filesystem\Directory. Consider defining an alias.

Let?s assume that you have a directory layout like this:

.
|-- OtherDir
|   |-- Bar.php
|   `-- Foo.php
`-- SomeDir
    `-- Foo.php

and let?s assume the following content of Bar.php:

// Bar.php
namespace OtherDir;

use SomeDir\Foo; // This now conflicts the class OtherDir\Foo

If both files OtherDir/Foo.php and SomeDir/Foo.php are loaded in the same runtime, you will see a PHP error such as the following:

PHP Fatal error:  Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php

However, as OtherDir/Foo.php does not necessarily have to be loaded and the error is only triggered if it is loaded before OtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias:

// Bar.php
namespace OtherDir;

use SomeDir\Foo as SomeDirFoo; // There is no conflict anymore.
Loading history...
9
use Helldar\Support\Facades\Helpers\Instance;
10
use SplFileInfo;
11
12
class File
13
{
14
    /**
15
     * Save content to file.
16
     *
17
     * @param  string  $path
18
     * @param  string  $content
19
     * @param  int  $mode
20
     */
21
    public function store(string $path, string $content, int $mode = 755): void
22
    {
23
        Directory::make(pathinfo($path, PATHINFO_DIRNAME), $mode);
24
25
        file_put_contents($path, $content);
26
    }
27
28
    /**
29
     * Checks if the file exists.
30
     *
31
     * @param  string  $path
32
     *
33
     * @return bool
34
     */
35
    public function exists(string $path): bool
36
    {
37
        return file_exists($path) && is_file($path);
38
    }
39
40
    /**
41
     * Deletes files in the specified paths.
42
     *
43
     * @param  string|string[]  $paths
44
     *
45
     * @return bool
46
     */
47
    public function delete($paths): bool
48
    {
49
        $paths = Arr::wrap($paths);
50
51
        $success = true;
52
53
        foreach ($paths as $path) {
54
            try {
55
                if (! @unlink($path)) {
56
                    $success = false;
57
                }
58
            } catch (ErrorException $e) {
59
                $success = false;
60
            }
61
        }
62
63
        return $success;
64
    }
65
66
    /**
67
     * Checks if an object or link is a file at the specified path.
68
     *
69
     * @param  \DirectoryIterator|\SplFileInfo|string  $value
70
     *
71
     * @return bool
72
     */
73
    public function isFile($value): bool
74
    {
75
        if (Instance::of($value, [SplFileInfo::class, DirectoryIterator::class])) {
76
            return $value->isFile();
77
        }
78
79
        return is_file($value);
80
    }
81
}
82