PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
doctrine
/
dbal
/
src
/
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; } }
[-] SchemaDiff.php
[edit]
[-] OracleSchemaManager.php
[edit]
[-] SchemaException.php
[edit]
[-] Schema.php
[edit]
[+]
..
[-] View.php
[edit]
[-] Identifier.php
[edit]
[-] DB2SchemaManager.php
[edit]
[-] ForeignKeyConstraint.php
[edit]
[+]
Exception
[-] Column.php
[edit]
[-] AbstractAsset.php
[edit]
[-] SqliteSchemaManager.php
[edit]
[-] UniqueConstraint.php
[edit]
[-] Table.php
[edit]
[-] TableDiff.php
[edit]
[+]
Visitor
[-] Sequence.php
[edit]
[-] Constraint.php
[edit]
[-] Index.php
[edit]
[-] MySQLSchemaManager.php
[edit]
[-] Comparator.php
[edit]
[-] SchemaConfig.php
[edit]
[-] AbstractSchemaManager.php
[edit]
[-] PostgreSQLSchemaManager.php
[edit]
[-] ColumnDiff.php
[edit]
[-] SQLServerSchemaManager.php
[edit]