Code Duplication    Length = 11-11 lines in 2 locations

src/Task/Composer/Install.php 1 location

@@ 24-34 (lines=11) @@
21
 * ?>
22
 * ```
23
 */
24
class Install extends Base
25
{
26
    /**
27
     * {@inheritdoc}
28
     */
29
    protected $action = 'install';
30
31
    /**
32
     * {@inheritdoc}
33
     */
34
    public function run()
35
    {
36
        $command = $this->getCommand();
37
        $this->printTaskInfo('Installing Packages: {command}', ['command' => $command]);

src/Task/Composer/Update.php 1 location

@@ 24-34 (lines=11) @@
21
 * ?>
22
 * ```
23
 */
24
class Update extends Base
25
{
26
    /**
27
     * {@inheritdoc}
28
     */
29
    protected $action = 'update';
30
31
    /**
32
     * {@inheritdoc}
33
     */
34
    public function run()
35
    {
36
        $command = $this->getCommand();
37
        $this->printTaskInfo('Updating Packages: {command}', ['command' => $command]);