Remove::updateNoDev()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 7

Duplication

Lines 7
Ratio 100 %

Importance

Changes 0
Metric Value
dl 7
loc 7
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 1
1
<?php
2
3
namespace Robo\Task\Composer;
4
5
/**
6
 * Composer Remove
7
 *
8
 * ``` php
9
 * <?php
10
 * // simple execution
11
 * $this->taskComposerRemove()->run();
12
 * ?>
13
 * ```
14
 */
15 View Code Duplication
class Remove extends Base
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...
16
{
17
    /**
18
     * {@inheritdoc}
19
     */
20
    protected $action = 'remove';
21
22
    /**
23
     * @param bool $dev
24
     *
25
     * @return $this
26
     */
27
    public function dev($dev = true)
28
    {
29
        if ($dev) {
30
            $this->option('--dev');
31
        }
32
        return $this;
33
    }
34
35
    /**
36
     * @param bool $noProgress
37
     *
38
     * @return $this
39
     */
40
    public function noProgress($noProgress = true)
41
    {
42
        if ($noProgress) {
43
            $this->option('--no-progress');
44
        }
45
        return $this;
46
    }
47
48
    /**
49
     * @param bool $noUpdate
50
     *
51
     * @return $this
52
     */
53
    public function noUpdate($noUpdate = true)
54
    {
55
        if ($noUpdate) {
56
            $this->option('--no-update');
57
        }
58
        return $this;
59
    }
60
61
    /**
62
     * @param bool $updateNoDev
63
     *
64
     * @return $this
65
     */
66
    public function updateNoDev($updateNoDev = true)
67
    {
68
        if ($updateNoDev) {
69
            $this->option('--update-no-dev');
70
        }
71
        return $this;
72
    }
73
74
    /**
75
     * @param bool $updateWithDependencies
76
     *
77
     * @return $this
78
     */
79
    public function noUpdateWithDependencies($updateWithDependencies = true)
80
    {
81
        if ($updateWithDependencies) {
82
            $this->option('--no-update-with-dependencies');
83
        }
84
        return $this;
85
    }
86
87
    /**
88
     * {@inheritdoc}
89
     */
90
    public function run()
91
    {
92
        $command = $this->getCommand();
93
        $this->printTaskInfo('Removing packages: {command}', ['command' => $command]);
94
        return $this->executeCommand($command);
95
    }
96
}
97