Passed
Pull Request — master (#376)
by Théo
02:28
created

Pharaoh   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 45
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 6
eloc 13
dl 0
loc 45
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A getFileName() 0 3 1
A __destruct() 0 7 1
A getPharInfo() 0 8 3
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the box project.
7
 *
8
 * (c) Kevin Herrera <[email protected]>
9
 *     Théo Fidry <[email protected]>
10
 *
11
 * This source file is subject to the MIT license that is bundled
12
 * with this source code in the file LICENSE.
13
 */
14
15
namespace KevinGH\Box\PharInfo;
16
17
use function basename;
18
use function KevinGH\Box\FileSystem\remove;
19
use ParagonIE\Pharaoh\Pharaoh as ParagoniePharaoh;
20
21
final class Pharaoh extends ParagoniePharaoh
22
{
23
    private $fileName;
24
25
    /** @var null|PharInfo */
26
    private $pharInfo;
27
28
    /** @var null|string */
29
    private $path;
30
31
    /**
32
     * {@inheritdoc}
33
     */
34
    public function __construct(string $file, ?string $alias = null)
35
    {
36
        parent::__construct($file, $alias);
37
38
        $this->fileName = basename($file);
39
    }
40
41
    /**
42
     * {@inheritdoc}
43
     */
44
    public function __destruct()
45
    {
46
        unset($this->pharInfo);
47
48
        parent::__destruct();
49
50
        remove($this->tmp);
51
    }
52
53
    public function getFileName(): string
54
    {
55
        return $this->fileName;
56
    }
57
58
    public function getPharInfo(): PharInfo
59
    {
60
        if (null === $this->pharInfo || $this->path !== $this->phar->getPath()) {
61
            $this->path = $this->phar->getPath();
62
            $this->pharInfo = new PharInfo($this->path);
63
        }
64
65
        return $this->pharInfo;
66
    }
67
}
68