Test Failed
Push — hotfix/fix-counts ( 1fe4ce...872cd6 )
by Paul
03:14
created

SiteReviewsShortcode   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 10
dl 0
loc 12
ccs 9
cts 9
cp 1
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A hideOptions() 0 10 1
1
<?php
2
3
namespace GeminiLabs\SiteReviews\Shortcodes;
4
5
use GeminiLabs\SiteReviews\Shortcodes\Shortcode;
6
7
class SiteReviewsShortcode extends Shortcode
8
{
9 1
	protected function hideOptions() {
10
		return [
11 1
			'title' => __( 'Hide the title', 'site-reviews' ),
12 1
			'rating' => __( 'Hide the rating', 'site-reviews' ),
13 1
			'date' => __( 'Hide the date', 'site-reviews' ),
14 1
			'assigned_to' => __( 'Hide the assigned to link (if shown)', 'site-reviews' ),
15 1
			'content' => __( 'Hide the content', 'site-reviews' ),
16 1
			'avatar' => __( 'Hide the avatar (if shown)', 'site-reviews' ),
17 1
			'author' => __( 'Hide the author', 'site-reviews' ),
18 1
			'response' => __( 'Hide the response', 'site-reviews' ),
19
		];
20
	}
21
}
22