Page MenuHomeWickedGov Phorge

View.php
No OneTemporary

Size
445 B
Referenced Files
None
Subscribers
None

View.php

<?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;
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Aug 18, 22:13 (1 d, 23 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b8/ab/c93db23270431c172a814a211b31
Default Alt Text
View.php (445 B)

Event Timeline