![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/medad.corals.io/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/ |
<?php namespace Doctrine\DBAL\Schema; /** * Representation of a Database View. */ class View extends AbstractAsset { /** @var string */ private $sql; /** * @param string $name * @param string $sql */ public function __construct($name, $sql) { $this->_setName($name); $this->sql = $sql; } /** * @return string */ public function getSql() { return $this->sql; } }