for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Author: Nil Portugués Calderó <[email protected]>
* Date: 9/12/14
* Time: 7:15 PM.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace NilPortugues\Sql\QueryBuilder\Builder\Syntax;
use NilPortugues\Sql\QueryBuilder\Manipulation\UnionAll;
* Class UnionAllWriter.
class UnionAllWriter extends AbstractSetWriter
{
* @param UnionAll $unionAll
* @return string
public function write(UnionAll $unionAll)
return $this->abstractWrite($unionAll, 'getUnions', UnionAll::UNION_ALL);
}