![]() 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/Metadata/Object/ |
<?php namespace Laminas\Db\Metadata\Object; class ViewObject extends AbstractTableObject { /** @var null|string */ protected $viewDefinition; /** @var null|string */ protected $checkOption; /** @var null|bool */ protected $isUpdatable; /** * @return string $viewDefinition */ public function getViewDefinition() { return $this->viewDefinition; } /** * @param string $viewDefinition to set * @return $this Provides a fluent interface */ public function setViewDefinition($viewDefinition) { $this->viewDefinition = $viewDefinition; return $this; } /** * @return string $checkOption */ public function getCheckOption() { return $this->checkOption; } /** * @param string $checkOption to set * @return $this Provides a fluent interface */ public function setCheckOption($checkOption) { $this->checkOption = $checkOption; return $this; } /** * @return bool $isUpdatable */ public function getIsUpdatable() { return $this->isUpdatable; } /** * @param bool $isUpdatable to set * @return $this Provides a fluent interface */ public function setIsUpdatable($isUpdatable) { $this->isUpdatable = $isUpdatable; return $this; } /** @return bool */ public function isUpdatable() { return (bool) $this->isUpdatable; } }