We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cfa5fa commit 1b6512cCopy full SHA for 1b6512c
src/Concerns/AutoloadsRelationships.php
@@ -92,12 +92,15 @@ private function logAutoload(string $relationship)
92
93
$file = $stack['file'];
94
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
- ]);
+ $this->logDriver->info(
+ '[LARAVEL-JIT-LOADER] Relationship '.static::class.'::'.$relationship.' was JIT-loaded.',
+ [
+ 'relationship' => static::class.'::'.$relationship,
+ 'file' => $file,
+ 'line' => $stack['line'],
101
+ 'view' => $this->getBlade($file),
102
+ ]
103
+ );
104
}
105
106
/**
0 commit comments