We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eadcfe6 commit 64fff63Copy full SHA for 64fff63
1 file changed
system/Images/Handlers/BaseHandler.php
@@ -165,7 +165,7 @@ public function withFile(string $path)
165
// Clear out the old resource so that
166
// it doesn't try to use a previous image
167
$this->resource = null;
168
- $this->checked = false;
+ $this->verified = false;
169
170
$this->image = new Image($path, true);
171
@@ -222,7 +222,7 @@ public function getFile()
222
*/
223
protected function image(): ?Image
224
{
225
- if ($this->checked)
+ if ($this->verified)
226
227
return $this->image;
228
}
@@ -246,7 +246,7 @@ protected function image(): ?Image
246
247
248
// Note that the image has been verified
249
- $this->checked = true;
+ $this->verified = true;
250
251
252
0 commit comments