[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
0xampp
/
phpMyAdmin
/
vendor
/
phpmyadmin
/
sql-parser
/
src
/
Components
/
[
Home
]
File: WithKeyword.php
<?php /** * `WITH` keyword builder. */ declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Components; use PhpMyAdmin\SqlParser\Component; use PhpMyAdmin\SqlParser\Parser; use RuntimeException; /** * `WITH` keyword builder. * * @final */ final class WithKeyword extends Component { /** @var string */ public $name; /** @var ArrayObj[] */ public $columns = []; /** @var Parser */ public $statement; public function __construct(string $name) { $this->name = $name; } /** * @param WithKeyword $component * @param mixed[] $options * * @return string */ public static function build($component, array $options = []) { if (! $component instanceof WithKeyword) { throw new RuntimeException('Can not build a component that is not a WithKeyword'); } if (! isset($component->statement)) { throw new RuntimeException('No statement inside WITH'); } $str = $component->name; if ($component->columns) { $str .= ArrayObj::build($component->columns); } $str .= ' AS ('; foreach ($component->statement->statements as $statement) { $str .= $statement->build(); } $str .= ')'; return $str; } }