Skip to content

Commit 1b6512c

Browse files
Fix CS violation
1 parent 1cfa5fa commit 1b6512c

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

src/Concerns/AutoloadsRelationships.php

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,15 @@ private function logAutoload(string $relationship)
9292

9393
$file = $stack['file'];
9494

95-
$this->logDriver->info('[LARAVEL-JIT-LOADER] Relationship '.static::class.'::'.$relationship.' was JIT-loaded.', [
96-
'relationship' => static::class.'::'.$relationship,
97-
'file' => $file,
98-
'line' => $stack['line'],
99-
'view' => $this->getBlade($file),
100-
]);
95+
$this->logDriver->info(
96+
'[LARAVEL-JIT-LOADER] Relationship '.static::class.'::'.$relationship.' was JIT-loaded.',
97+
[
98+
'relationship' => static::class.'::'.$relationship,
99+
'file' => $file,
100+
'line' => $stack['line'],
101+
'view' => $this->getBlade($file),
102+
]
103+
);
101104
}
102105

103106
/**

0 commit comments

Comments
 (0)