for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Trait IfExistsTrait
*
* @filesource IfExistsTrait.php
* @created 08.01.2018
* @package chillerlan\Database\Query
* @author Smiley <[email protected]>
* @copyright 2018 Smiley
* @license MIT
*/
namespace chillerlan\Database\Query;
trait IfExistsTrait{
protected bool $ifExists = false;
* @return $this
public function ifExists():Statement{
$this->ifExists = true;
return $this;
}