mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-04 22:17:25 +02:00
update deps & install rector
This commit is contained in:
@@ -4,20 +4,9 @@ namespace DesignPatterns\Structural\FluentInterface;
|
||||
|
||||
class Sql
|
||||
{
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private $fields = [];
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private $from = [];
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
private $where = [];
|
||||
private array $fields = [];
|
||||
private array $from = [];
|
||||
private array $where = [];
|
||||
|
||||
public function select(array $fields): Sql
|
||||
{
|
||||
|
Reference in New Issue
Block a user