Completed
Push — master ( eef885...465d0c )
by
unknown
30:08 queued 12:49
created

term_attachment_class   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A construct() 0 1 1
1
<?php namespace eoxia;
2
3
if ( !defined( 'ABSPATH' ) ) exit;
4
5
if ( ! class_exists( '\eoxia\Term_Attachment_Class' ) ) {
6
	class term_attachment_class extends Singleton_Util {
7
		protected $model_name = 'term_model';
8
		protected $meta_key = '_wpeo_term';
9
		protected $taxonomy = 'attachment_category';
10
		protected $base = 'term';
11
		protected $version = '0.1';
12
		protected $identifier_helper = 'term';
13
14
		protected function construct() {}
15
	}
16
}
17