RotateWasSuccessful   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
namespace Cesargb\LaravelLog\Events;
4
5
class RotateWasSuccessful
6
{
7
    public string $filename;
8
9
    public string $filenameTarget;
10
11
    public function __construct(string $filename, string $filenameTarget)
12
    {
13
        $this->filename = $filename;
14
15
        $this->filenameTarget = $filenameTarget;
16
    }
17
}
18