File: /home/accemeff/vendor/craftcms/cms/src/db/StructuredElementQuery.php
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\db;
use creocoder\nestedsets\NestedSetsQueryBehavior;
use yii\db\ActiveQuery;
/**
* @inheritdoc
* @mixin NestedSetsQueryBehavior
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.0
*/
class StructuredElementQuery extends ActiveQuery
{
// Public Methods
// =========================================================================
/**
* @inheritdoc
*/
public function behaviors()
{
return [
NestedSetsQueryBehavior::class,
];
}
}