Skip to content

Commit

Permalink
v1.4.1
Browse files Browse the repository at this point in the history
* Change return type of get_value() to mixed #37 

* v1.4.1
  • Loading branch information
ottoturu authored Oct 10, 2024
1 parent d4de1f5 commit 1cec7bb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Released]

## [1.4.1] - 2024-10-10

### Fixed
- Change return type of get_value() to mixed #37

## [1.4.0] - 2024-05-08

### Changed
Expand Down
2 changes: 1 addition & 1 deletion plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Oopi
* Plugin URI: https://github.com/devgeniem/wp-oopi
* Description: Oopi is an object-oriented developer friendly WordPress importer.
* Version: 1.4.0
* Version: 1.4.1
* Author: Geniem
* Author URI: http://www.github.com/devgeniem
* License: GPL3
Expand Down
4 changes: 2 additions & 2 deletions src/Attribute/Meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ public function get_key(): string {
/**
* Get the value.
*
* @return string
* @return mixed
*/
public function get_value(): string {
public function get_value() {
return $this->value;
}

Expand Down

0 comments on commit 1cec7bb

Please sign in to comment.