This repository has been archived on 2024-03-08. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
website-old/storage/framework/database/Query.php

15 lines
266 B
PHP

<?php
namespace framework\database;
class Query
{
public string $query;
public array $parameters;
public function __construct(string $query, array $parameters = [])
{
$this->query = $query;
$this->parameters = $parameters;
}
}