for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Schema;
/**
* Representation of a Database View.
*/
class View extends AbstractAsset
{
/** @var string */
private $sql;
public function __construct(string $name, string $sql)
$this->_setName($name);
$this->sql = $sql;
}
public function getSql() : string
return $this->sql;