Skip to content

Commit

Permalink
nitpicks
Browse files Browse the repository at this point in the history
  • Loading branch information
patinthehat committed Jun 10, 2024
1 parent c9dffbc commit c4a2a3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Exceptions/InvalidSize.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ public static function for(int $value, string $type, string $property): static

public static function forThumbnail(int $value, string $property): static
{
return self::for($value, 'thumbnail', $property);
return static::for($value, 'thumbnail', $property);
}

public static function forImage(int $value, string $property): static
{
return self::for($value, 'image', $property);
return static::for($value, 'image', $property);
}
}

0 comments on commit c4a2a3f

Please sign in to comment.