Passed
Push — main ( cbb4d9...1825d1 )
by Andrey
61:06 queued 58:08
created

Breeze::source()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 1
eloc 3
c 2
b 0
f 0
nc 1
nop 0
dl 0
loc 5
ccs 0
cts 2
cp 0
crap 2
rs 10
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