Test Failed
Push — hotfix/fix-counts ( e9420b...4803a6 )
by Paul
05:49
created

SiteReviewsSummaryShortcode   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 7
c 1
b 0
f 0
dl 0
loc 9
ccs 0
cts 6
cp 0
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A hideOptions() 0 7 1
1
<?php
2
3
namespace GeminiLabs\SiteReviews\Shortcodes;
4
5
use GeminiLabs\SiteReviews\Shortcodes\Shortcode;
6
7
class SiteReviewsSummaryShortcode extends Shortcode
8
{
9
	protected function hideOptions() {
10
		return [
11
			'rating' => __( 'Hide the rating', 'site-reviews' ),
12
			'stars' => __( 'Hide the stars', 'site-reviews' ),
13
			'summary' => __( 'Hide the summary', 'site-reviews' ),
14
			'bars' => __( 'Hide the percentage bars', 'site-reviews' ),
15
			'if_empty' => __( 'Hide if no reviews are found', 'site-reviews' ),
16
		];
17
	}
18
}
19