Skip to content

Commit

Permalink
v4.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kprovance committed Dec 4, 2024
1 parent 58e7b26 commit 9babba3
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* Added `null` to multiple typesafe declarations.
* Added: CSS output added to `slider` field.
* Added: Minimum PHP 7.4 warning message to admin screen to prevent fatal errors. Some people are, apparently, still using outdated PHP.
* Release date: December 3, 2024
* Release date: December 4, 2024

## 4.5.0
* Changed: Minimum PHP version now 7.4.
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ NOTE: Redux is not intended to be used on its own. It requires a config file pro
* Added `null` to multiple typesafe declarations.
* Added: CSS output added to `slider` field.
* Added: Minimum PHP 7.4 warning message to admin screen to prevent fatal errors. Some people are, apparently, still using outdated PHP.
* Release date: December 3, 2024
* Release date: December 4, 2024

= 4.5.0 =
* Changed: Minimum PHP version now 7.4.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,23 +44,23 @@ class Redux_Extension_Custom_Fonts extends Redux_Extension_Abstract {
/**
* Custom fonts array.
*
* @var array
* @var array|null
*/
public array $custom_fonts = array();
public ?array $custom_fonts = array();

/**
* WordPress upload directory.
*
* @var string
* @var string|null
*/
public string $upload_dir = '';
public ?string $upload_dir = '';

/**
* WordPress upload URI.
*
* @var string
* @var string|null
*/
public string $upload_url = '';
public ?string $upload_url = '';

/**
* Subfolder name.
Expand All @@ -72,23 +72,23 @@ class Redux_Extension_Custom_Fonts extends Redux_Extension_Abstract {
/**
* Font folder.
*
* @var string
* @var string|null
*/
public string $font_folder = '';
public ?string $font_folder = '';

/**
* Font Filename.
*
* @var string
* @var string|null
*/
public string $font_filename = '';
public ?string $font_filename = '';

/**
* File selected in media upload.
*
* @var string
* @var string|null
*/
public string $selected_file = '';
public ?string $selected_file = '';

/**
* Is font conversation service available?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,44 +38,44 @@ class Redux_Extension_Metaboxes extends Redux_Extension_Abstract {
/**
* Boxes array.
*
* @var array
* @var array|null
*/
public array $boxes = array();
public ?array $boxes = array();

/**
* Post types array.
*
* @var array
* @var array|null
*/
public array $post_types = array();
public ?array $post_types = array();

/**
* Post type.
*
* @var string
* @var string|null
*/
public string $post_type;
public ?string $post_type;

/**
* Sections array.
*
* @var array
* @var array|null
*/
public array $orig_args;
public ?array $orig_args;

/**
* Sections array.
*
* @var array
* @var array|null
*/
public array $sections = array();
public ?array $sections = array();

/**
* CSS output array.
*
* @var array
* @var array|null
*/
public array $output = array();
public ?array $output = array();

/**
* Options array.
Expand Down Expand Up @@ -136,9 +136,9 @@ class Redux_Extension_Metaboxes extends Redux_Extension_Abstract {
/**
* Base URI.
*
* @var string
* @var string|null
*/
public string $base_url;
public ?string $base_url;

/**
* WP_Links array.
Expand Down

0 comments on commit 9babba3

Please sign in to comment.