| Current Path : /home/rtorresani/www/vendor/magento/module-config/Model/Config/Structure/Element/ |
| Current File : //home/rtorresani/www/vendor/magento/module-config/Model/Config/Structure/Element/Tab.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Config\Model\Config\Structure\Element;
/**
* @api
* @since 100.0.2
*/
class Tab extends AbstractComposite
{
/**
* Check whether tab is visible
*
* @return bool
*/
public function isVisible()
{
return $this->hasChildren();
}
}