wxt-8.x-3.011/modules/custom/wxt_core/src/Plugin/views/filter/Bundle.php
modules/custom/wxt_core/src/Plugin/views/filter/Bundle.php
<?php
namespace Drupal\wxt_core\Plugin\views\filter;
use Drupal\wxt_core\YieldToArgumentTrait;
use Drupal\views\Plugin\views\filter\Bundle as BaseBundle;
/**
* A Bundle filter plugin which supports yielding to an argument.
*
* Leveraged from code provided by Acquia for the Lightning distribution.
*/
class Bundle extends BaseBundle {
use YieldToArgumentTrait;
}
