Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
<?php
declare(strict_types=1);
namespace Korobochkin\WPKit\MetaBoxes;
/**
 * Interface MetaBoxViewInterface
 */
interface MetaBoxViewInterface
{
    /**
     * Output HTML markup for Meta Box.
     *
     * @param MetaBoxInterface $metaBox Meta box instance.
     */
    public function render(MetaBoxInterface $metaBox);
}