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

term_attachment_class::construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 1
rs 10
c 0
b 0
f 0
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