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 101eed9 commit 16600e9Copy full SHA for 16600e9
tests/Unit/LogFileTest.php
@@ -34,8 +34,8 @@
34
$logFile = new LogFile($path);
35
36
expect($logFile->identifier)->toBe(
37
- Utils::shortMd5($serverIp . ':' . $path) . '-laravel.log'
+ Utils::shortMd5($serverIp.':'.$path).'-laravel.log'
38
)->and($logFile->subFolderIdentifier())->toBe(
39
- Utils::shortMd5($serverIp . ':' . $logFile->subFolder)
+ Utils::shortMd5($serverIp.':'.$logFile->subFolder)
40
);
41
});
tests/Unit/LogFolderTest.php
@@ -31,6 +31,6 @@
31
$folder = new LogFolder('folder', []);
32
33
expect($folder->identifier)->toBe(
- Utils::shortMd5($serverIp . ':' . $folder->path)
+ Utils::shortMd5($serverIp.':'.$folder->path)
0 commit comments