for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Puzzle\QueryBuilder\Queries\Snippets;
use Puzzle\QueryBuilder\Snippet;
use Puzzle\QueryBuilder\Type;
use Puzzle\QueryBuilder\Conditions;
use Puzzle\QueryBuilder\Traits\EscaperAware;
use Puzzle\QueryBuilder\Traits\TypeGuesser;
class Set implements Snippet
{
use
EscaperAware,
TypeGuesser;
private
$sets;
$sets
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
class A { var $property; }
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.
public function __construct()
$this->sets = [];
}
public function set(array $fields): self
$this->sets = array_merge($this->sets, $fields);
return $this;
public function toString(): string
if(empty($this->sets))
return '';
$sets = array();
foreach($this->sets as $columnName => $value)
$type = $this->guessType($columnName, $value);
$sets[] = (new Conditions\Equal($type, $value))->toString($this->escaper);
return sprintf('SET %s', implode(', ', $sets));
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.