Skip to content

Commit

Permalink
Fix phpdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
pfefferle committed Jan 29, 2025
1 parent 0d03454 commit 8572ed9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions includes/transformer/class-base.php
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ public function get_replies() {
/**
* Returns the content map for the post.
*
* @return array The content map for the post.
* @return array|null The content map for the post or null if not set.
*/
protected function get_content_map() {
if ( ! \method_exists( $this, 'get_content' ) || ! $this->get_content() ) {
Expand All @@ -283,7 +283,7 @@ protected function get_content_map() {
/**
* Returns the name map for the post.
*
* @return array The name map for the post.
* @return array|null The name map for the post or null if not set.
*/
protected function get_name_map() {
if ( ! \method_exists( $this, 'get_name' ) || ! $this->get_name() ) {
Expand All @@ -298,7 +298,7 @@ protected function get_name_map() {
/**
* Returns the summary map for the post.
*
* @return array The summary map for the post.
* @return array|null The summary map for the post or null if not set.
*/
protected function get_summary_map() {
if ( ! \method_exists( $this, 'get_summary' ) || ! $this->get_summary() ) {
Expand Down

0 comments on commit 8572ed9

Please sign in to comment.