Skip to content

Commit

Permalink
Fix PHP 8 warning #795
Browse files Browse the repository at this point in the history
  • Loading branch information
girishpanchal30 committed Apr 26, 2021
1 parent f00b870 commit e3da439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/Visualizer/Source.php
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ public static final function get_date_formats_if_exists( $series, $data ) {
*
* @return string|null
*/
private static final function determine_date_format( $value, $type ) {
private static function determine_date_format( $value, $type ) {
if ( version_compare( phpversion(), '5.3.0', '<' ) ) {
do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'PHP version %s not supported', phpversion() ), 'error', __FILE__, __LINE__ );
return null;
Expand Down

0 comments on commit e3da439

Please sign in to comment.