Completed
Push — master ( b5e165...d1e129 )
by
unknown
05:52
created

Block   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A make() 0 3 1
1
<?php
2
3
namespace Carbon_Fields;
4
5
/**
6
 * Block proxy factory class.
7
 * Used for shorter namespace access when creating a block.
8
 */
9
class Block extends Container {
10
	/**
11
	 * {@inheritDoc}
12
	 */
13
	public static function make() {
14
		return call_user_func_array( array( 'parent', 'make' ), array_merge( array( 'block' ), func_get_args() ) );
15
	}
16
}
17