Skip to content

Commit

Permalink
fix mistakes and change extension status
Browse files Browse the repository at this point in the history
  • Loading branch information
silentrs committed Nov 3, 2021
1 parent 0ba9b24 commit e1e7369
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions META-INF/sdk/php/id3Tag/Id3v2Tag.php
Original file line number Diff line number Diff line change
Expand Up @@ -199,14 +199,14 @@ public function getPartOfSet() {}



public function setAlbum($string, $mimeType = null) {}
public function setAlbum($string) {}
public function setArtist($string) {}
public function setGenre($int) {}
public function setGenreDescription($string) {}
public function setTitle($string) {}
public function setTrack($string) {}
public function setAlbumArtist($string) {}
public function setAlbumImage($path) {}
public function setAlbumImage($path, $mimeType = null) {}
public function setArtistUrl($string) {}
public function setYear($string) {}
public function setAudiofileUrl($string) {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class Id3TagExtension extends Extension {

@Override
public Status getStatus() {
return Status.BETA;
return Status.STABLE;
}

@Override
Expand Down

0 comments on commit e1e7369

Please sign in to comment.