automatewoo/includes/Review_Factory.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

24 lines
382 B
PHP

<?php
namespace AutomateWoo;
/**
* Class Review_Factory.
*
* @since 4.5
* @package AutomateWoo
*/
class Review_Factory {
/**
* Get a review object.
*
* @param \WP_Comment|int $comment Comment or comment ID.
*
* @return Review|bool
*/
public static function get( $comment ) {
$review = new Review( $comment );
return $review->exists ? $review : false;
}
}