# give/4.16.9/src/Framework/QueryBuilder/Clauses/Select.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 33 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/QueryBuilder/Clauses/Select.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Framework/QueryBuilder/Clauses/Select.php
- Modified: 2024-01-10T19:22:20+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/give/4.16.9/code/src/Framework/QueryBuilder/Clauses/Select.php#L10-L20`.

```php
<?php

namespace Give\Framework\QueryBuilder\Clauses;

/**
 * @since 2.19.0
 */
class Select
{
    /**
     * @var string
     */
    public $column;

    /**
     * @var string
     */
    public $alias;

    /**
     * @param  string  $column
     * @param  string|null  $alias
     */
    public function __construct($column, $alias = null)
    {
        $this->column = trim($column);

        if ( ! is_null($alias)) {
            $this->alias = trim($alias);
        }
    }
}

```
