You are here

public function TableComparison::setDeclaredTableComment in Schema 8

File

src/Comparison/Result/TableComparison.php, line 63
Contains Drupal\schema\Comparison\Result\TableComparison.

Class

TableComparison

Namespace

Drupal\schema\Comparison\Result

Code

public function setDeclaredTableComment($value) {
  if (empty($value)) {
    $value = FALSE;
  }
  $this->table_comment_declared = $value;
}