Skip to content

Commit

Permalink
adjusted version constant to 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaishiyoku committed Oct 6, 2023
1 parent 685a781 commit 4e64ce5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions src/Helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,7 @@ public static function withRetries(callable $callback, int $delay = 1, int $retr
}
}

/**
* @param mixed $value
*/
public static function parseDate($value): ?Carbon
public static function parseDate(mixed $value): ?Carbon
{
return $value === null ? null : Carbon::parse($value);
}
Expand Down
2 changes: 1 addition & 1 deletion src/HeraRssCrawler.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

class HeraRssCrawler
{
private const VERSION = '5.1.4';
private const VERSION = '6.0.0';

private ?Client $httpClient;

Expand Down

0 comments on commit 4e64ce5

Please sign in to comment.