aristath/kirki

View on GitHub
packages/kirki-framework/module-sections/src/Section_Types/Outer.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * An outer section.
 *
 * @package kirki-framework/module-sections
 * @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
 * @license https://opensource.org/licenses/MIT
 * @since 1.0.0
 */

namespace Kirki\Section_Types;

/**
 * Outer Section.
 */
class Outer extends \WP_Customize_Section {

    /**
     * The section type.
     *
     * @access public
     * @since 1.0.0
     * @var string
     */
    public $type = 'kirki-outer';
}