develop #2

Merged
aldarien merged 7 commits from develop into master 2025-09-29 16:44:47 -03:00
8 changed files with 57 additions and 1 deletions
Showing only changes of commit e64ea2709c - Show all commits

View File

@ -0,0 +1,8 @@
<?php
namespace ProVM\Database\Query\PostgreSQL;
use ProVM\Implement\Database\Query;
class Create extends Query\Create
{
}

View File

@ -0,0 +1,8 @@
<?php
namespace ProVM\Database\Query\PostgreSQL;
use ProVM\Implement\Database\Query;
class Delete extends Query\Delete
{
}

View File

@ -0,0 +1,8 @@
<?php
namespace ProVM\Database\Query\PostgreSQL;
use ProVM\Implement\Database\Query;
class Drop extends Query\Drop
{
}

View File

@ -0,0 +1,8 @@
<?php
namespace ProVM\Database\Query\PostgreSQL;
use ProVM\Implement\Database\Query;
class Insert extends Query\Insert
{
}

View File

@ -0,0 +1,8 @@
<?php
namespace ProVM\Database\Query\PostgreSQL;
use ProVM\Implement\Database\Query;
class Select extends Query\Select
{
}

View File

@ -0,0 +1,8 @@
<?php
namespace ProVM\Database\Query\PostgreSQL;
use ProVM\Implement\Database\Query;
class Truncate extends Query\Truncate
{
}

View File

@ -0,0 +1,8 @@
<?php
namespace ProVM\Database\Query\PostgreSQL;
use ProVM\Implement\Database\Query;
class Update extends Query\Update
{
}