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