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;
class Update implements Snippet
{
private
$tables;
$tables
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($table = null, ?string $alias = null)
$this->tables = array();
if(! empty($table))
$this->addTable($table, $alias);
}
public function addTable($table, ?string $alias = null): self
if(! $table instanceof TableName)
$table = new TableName($table, $alias);
$this->tables[] = $table;
return $this;
public function toString(): string
if(empty($this->tables))
return '';
$tables = array();
foreach($this->tables as $table)
$tables[] = $table->toString();
$tablesString = implode(', ', array_filter($tables));
return sprintf('UPDATE %s', $tablesString);
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.