![]() 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/old/vendor/laminas/laminas-db/src/Sql/Platform/SqlServer/Ddl/ |
<?php namespace Laminas\Db\Sql\Platform\SqlServer\Ddl; use Laminas\Db\Adapter\Platform\PlatformInterface; use Laminas\Db\Sql\Ddl\CreateTable; use Laminas\Db\Sql\Platform\PlatformDecoratorInterface; use function ltrim; class CreateTableDecorator extends CreateTable implements PlatformDecoratorInterface { /** @var CreateTable */ protected $subject; /** * @param CreateTable $subject * @return $this Provides a fluent interface */ public function setSubject($subject) { $this->subject = $subject; return $this; } /** * @return array */ protected function processTable(?PlatformInterface $adapterPlatform = null) { $table = ($this->isTemporary ? '#' : '') . ltrim($this->table, '#'); return [ '', $adapterPlatform->quoteIdentifier($table), ]; } }