Automattic\WooCommerce\Database\Migrations
TableMigrator::add_error
Add an error message to the errors list unless it's there already.
Method of the class: TableMigrator{}
No Hooks.
Returns
null. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->add_error( $error ): void;
- $error(string) (required)
- The error message to add.
TableMigrator::add_error() TableMigrator::add error code WC 10.5.0
protected function add_error( string $error ): void {
if ( is_null( $this->errors ) ) {
$this->errors = array();
}
if ( ! in_array( $error, $this->errors, true ) ) {
$this->errors[] = $error;
}
}