File "View-20250318145217.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/doctrine/dbal/src/Schema/View-20250318145217.php
File size: 346 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Schema;
/**
* Representation of a Database View.
*/
class View extends AbstractAsset
{
public function __construct(string $name, private readonly string $sql)
{
$this->_setName($name);
}
public function getSql(): string
{
return $this->sql;
}
}