for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of UnderQuery package.
*
* Copyright (c) 2016 Beniamin Jonatan Šimko
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Phuria\UnderQuery\Table;
* @author Beniamin Jonatan Šimko <[email protected]>
class JoinMetadata
{
* @var string
private $joinType;
private $joinOn;
* @var bool
private $naturalJoin = false;
private $outerJoin = false;
* @return string
public function getJoinType()
return $this->joinType;
}
* @param string $joinType
* @return JoinMetadata
public function setJoinType($joinType)
$this->joinType = $joinType;
return $this;
public function getJoinOn()
return $this->joinOn;
* @param string $joinOn
public function setJoinOn($joinOn)
$this->joinOn = $joinOn;
* @return boolean
public function isNaturalJoin()
return $this->naturalJoin;
* @param boolean $naturalJoin
public function setNaturalJoin($naturalJoin)
$this->naturalJoin = $naturalJoin;
public function isOuterJoin()
return $this->outerJoin;
* @param boolean $outerJoin
public function setOuterJoin($outerJoin)
$this->outerJoin = $outerJoin;