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 {
* {@inheritDoc}
public static function make() {
return call_user_func_array( array( 'parent', 'make' ), array_merge( array( 'block' ), func_get_args() ) );
}