Skip to content

Commit cfc65ac

Browse files
authored
Fix (#54839)
1 parent 928be7b commit cfc65ac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Illuminate/Filesystem/LocalFilesystemAdapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public function diskName(string $disk)
8787
}
8888

8989
/**
90-
* Indiate that signed URLs should serve the corresponding files.
90+
* Indicate that signed URLs should serve the corresponding files.
9191
*
9292
* @param bool $serve
9393
* @param \Closure|null $urlGeneratorResolver

tests/Integration/Cache/RepositoryTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public function testStaleWhileRevalidate(): void
103103
$this->assertSame(3, $cache->get('foo'));
104104
$this->assertSame(946684832, $cache->get('illuminate:cache:flexible:created:foo'));
105105

106-
// Now we will execute the deferred callback but we will first aquire
106+
// Now we will execute the deferred callback but we will first acquire
107107
// our own lock. This means that the value should not be refreshed by
108108
// deferred callback.
109109
/** @var Lock */
@@ -118,7 +118,7 @@ public function testStaleWhileRevalidate(): void
118118
$this->assertTrue($lock->release());
119119

120120
// Now we have cleared the lock we will, one last time, confirm that
121-
// the deferred callack does refresh the value when the lock is not active.
121+
// the deferred callback does refresh the value when the lock is not active.
122122
defer()->invoke();
123123
$this->assertCount(0, defer());
124124
$this->assertSame(4, $cache->get('foo'));

0 commit comments

Comments
 (0)