# elementor/3.35.0-dev2/modules/atomic-widgets/query/query-builder-base.php

Elementor Website Builder – more than just a page builder, version 3.35.0-dev2. 18 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.35.0-dev2/code/modules/atomic-widgets/query/query-builder-base.php
- Raw: https://pluginprobe.com/plugins/elementor/3.35.0-dev2/raw/modules/atomic-widgets/query/query-builder-base.php
- Modified: 2025-10-21T12:51:06+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/3.35.0-dev2/code/modules/atomic-widgets/query/query-builder-base.php#L10-L20`.

```php
<?php

namespace Elementor\Modules\AtomicWidgets\Query;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

abstract class Query_Builder_Base {
	protected array $config;

	public function __construct( array $config ) {
		$this->config = $config;
	}

	abstract public function build(): array;
}

```
