File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/Illuminate/Filesystem Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ public function diskName(string $disk)
87
87
}
88
88
89
89
/**
90
- * Indiate that signed URLs should serve the corresponding files.
90
+ * Indicate that signed URLs should serve the corresponding files.
91
91
*
92
92
* @param bool $serve
93
93
* @param \Closure|null $urlGeneratorResolver
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ public function testStaleWhileRevalidate(): void
103
103
$ this ->assertSame (3 , $ cache ->get ('foo ' ));
104
104
$ this ->assertSame (946684832 , $ cache ->get ('illuminate:cache:flexible:created:foo ' ));
105
105
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
107
107
// our own lock. This means that the value should not be refreshed by
108
108
// deferred callback.
109
109
/** @var Lock */
@@ -118,7 +118,7 @@ public function testStaleWhileRevalidate(): void
118
118
$ this ->assertTrue ($ lock ->release ());
119
119
120
120
// 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.
122
122
defer ()->invoke ();
123
123
$ this ->assertCount (0 , defer ());
124
124
$ this ->assertSame (4 , $ cache ->get ('foo ' ));
You can’t perform that action at this time.
0 commit comments