Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions inc/post-meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,11 @@ function update_schedule( int $meta_id, int $object_id, string $meta_key, $meta_
* @param int[] $meta_ids An array of deleted metadata entry IDs.
* @param int $object_id Object ID.
* @param string $meta_key Meta key.
*
* @return bool
*/
function remove_schedule( array $meta_ids, int $object_id, string $meta_key ) : bool {
function remove_schedule( array $meta_ids, int $object_id, string $meta_key ) : void {
if ( $meta_key === Unpublish\POST_META_KEY ) {
return Unpublish\unschedule_unpublish( $object_id );
Unpublish\unschedule_unpublish( $object_id );
}

return false;
}

/**
Expand Down