Passed
Push — master ( 1d60eb...03dff3 )
by Stiofan
06:44 queued 03:02
created

VgmcpInstaller::inflectThemeVars()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8

Duplication

Lines 8
Ratio 100 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 8
loc 8
rs 10
c 0
b 0
f 0
1
<?php
2
namespace Composer\Installers;
3
4 View Code Duplication
class VgmcpInstaller extends BaseInstaller
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...
5
{
6
    protected $locations = array(
7
        'bundle' => 'src/{$vendor}/{$name}/',
8
        'theme' => 'themes/{$name}/'
9
    );
10
11
    /**
12
     * Format package name.
13
     *
14
     * For package type vgmcp-bundle, cut off a trailing '-bundle' if present.
15
     *
16
     * For package type vgmcp-theme, cut off a trailing '-theme' if present.
17
     *
18
     */
19
    public function inflectPackageVars($vars)
20
    {
21
        if ($vars['type'] === 'vgmcp-bundle') {
22
            return $this->inflectPluginVars($vars);
23
        }
24
25
        if ($vars['type'] === 'vgmcp-theme') {
26
            return $this->inflectThemeVars($vars);
27
        }
28
29
        return $vars;
30
    }
31
32
    protected function inflectPluginVars($vars)
33
    {
34
        $vars['name'] = preg_replace('/-bundle$/', '', $vars['name']);
35
        $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
36
        $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
37
38
        return $vars;
39
    }
40
41
    protected function inflectThemeVars($vars)
42
    {
43
        $vars['name'] = preg_replace('/-theme$/', '', $vars['name']);
44
        $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
45
        $vars['name'] = str_replace(' ', '', ucwords($vars['name']));
46
47
        return $vars;
48
    }
49
}
50