Skip to content

Commit

Permalink
Remove mixed type hint (Not available in PHP 7.4)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeoJunkie committed Apr 5, 2024
1 parent 6b1cf12 commit 9d85a23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ public function get_settings_data( string $key = '' ) {
*
* @return void
*/
public function update_settings_data( string $key, mixed $value ): void {
public function update_settings_data( string $key, $value ): void {
Logger::log( 'Updating settings data for ' . $key . ' to ' . $value );
$plugin_settings = $this->get_settings_data();

Expand Down

0 comments on commit 9d85a23

Please sign in to comment.