for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Rougin\Windstorm\Doctrine\Builder;
/**
* Delete Query
*
* @package Windstorm
* @author Rougin Gutib <[email protected]>
*/
class DeleteQuery extends AbstractQuery
{
* Returns the compiled SQL.
* @return string
public function get()
return 'DELETE FROM ' . $this->table() . $this->where();
}