for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tworzenieweb\SqlProvisioner\Formatter;
use SqlFormatter;
/**
* @author Luke Adamczewski
* @package Tworzenieweb\SqlProvisioner\Formatter
*/
class Sql
{
* @param string $sql
* @return String
public function format($sql)
return SqlFormatter::format(SqlFormatter::removeComments($sql));
}