Skip to content

Commit 0d8cb65

Browse files
committed
Use phpdoc to declare that the post ID is a positive-int|null
1 parent 09d7af7 commit 0d8cb65

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

plugins/optimization-detective/optimization.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,13 @@ function od_optimize_template_output_buffer( string $buffer ): string {
248248
$query_vars = od_get_normalized_query_vars();
249249
$slug = od_get_url_metrics_slug( $query_vars );
250250
$post = OD_URL_Metrics_Post_Type::get_post( $slug );
251-
$post_id = $post instanceof WP_Post && $post->ID > 0 ? $post->ID : null;
251+
252+
/**
253+
* Post ID.
254+
*
255+
* @var positive-int|null $post_id
256+
*/
257+
$post_id = $post instanceof WP_Post ? $post->ID : null;
252258

253259
$tag_visitor_registry = new OD_Tag_Visitor_Registry();
254260

0 commit comments

Comments
 (0)