for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Nip\Database\Query;
/**
* Class Replace
* @package Nip\Database\Query
*/
class Replace extends Insert
{
* @return string
public function assemble()
$query = 'REPLACE INTO ' . $this->protect($this->getTable()) . $this->parseCols() . $this->parseValues();
$this->parseValues()
false|string
concatenation
If this is a false-positive, you can also ignore this issue in your code via the ignore-type annotation
ignore-type
$query = 'REPLACE INTO ' . $this->protect($this->getTable()) . $this->parseCols() . /** @scrutinizer ignore-type */ $this->parseValues();
return $query;
}