JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr */ protected array $defaultTableOptions = []; public function setMaxIdentifierLength(int $length): void { $this->maxIdentifierLength = $length; } public function getMaxIdentifierLength(): int { return $this->maxIdentifierLength; } /** * Gets the default namespace of schema objects. */ public function getName(): ?string { return $this->name; } /** * Sets the default namespace name of schema objects. */ public function setName(?string $name): void { $this->name = $name; } /** * Gets the default options that are passed to Table instances created with * Schema#createTable(). * * @return array */ public function getDefaultTableOptions(): array { return $this->defaultTableOptions; } /** @param array $defaultTableOptions */ public function setDefaultTableOptions(array $defaultTableOptions): void { $this->defaultTableOptions = $defaultTableOptions; } }