Passed
Pull Request — main (#117)
by Andrey
58:38 queued 43:37
created

Breeze   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 5
c 2
b 0
f 0
dl 0
loc 12
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A vendor() 0 3 1
A source() 0 5 1
1
<?php
2
3
namespace Helldar\LaravelLangPublisher\Plugins;
4
5
final class Breeze extends Plugin
6
{
7
    public function vendor(): string
8
    {
9
        return 'laravel/breeze';
10
    }
11
12
    public function source(): array
13
    {
14
        return [
15
            'packages/fortify.json',
16
            'packages/jetstream.json',
17
        ];
18
    }
19
}
20