You are here

public function TypeSettingsStorage::setMethod in Node Accessibility 8

Assign the method string.

Parameters

string|null $method: Value to assign.

File

src/TypeSettingsStorage.php, line 500

Class

TypeSettingsStorage
Class TypeSettingsStorage.

Namespace

Drupal\node_accessibility

Code

public function setMethod($method) {
  if (is_null($method) || is_string($method)) {
    $this->method = $method;
  }
}