for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Carbon_Fields;
/**
* Block proxy factory class.
* Used for shorter namespace access when creating a block.
*/
class Block extends Container {
* An alias of factory().
*
* @see \Carbon_Fields\Container\Container::factory()
* @return \Carbon_Fields\Container\Container
public static function make() {
return call_user_func_array( array( 'parent', 'make' ), array_merge( array('block'), func_get_args() ) );
}