Passed
Pull Request — main (#123)
by Andrey
27:30 queued 12:28
created

Cashier::files()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace LaravelLang\Lang\Publisher\Plugins;
6
7
use Helldar\LaravelLangPublisher\Plugins\BasePlugin;
8
9
class Cashier extends BasePlugin
10
{
11
    public function vendor(): string
12
    {
13
        return 'laravel/cashier';
14
    }
15
16
    public function files(): array
17
    {
18
        return [
19
            'packages/cashier.json' => '{locale}.json',
20
        ];
21
    }
22
}
23