You are here

protected function WebformSubmissionForm::getStorage in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/WebformSubmissionForm.php \Drupal\webform\WebformSubmissionForm::getStorage()

Get the webform submission entity storage.

Return value

\Drupal\Webform\WebformSubmissionStorageInterface The webform submission entity storage.

File

src/WebformSubmissionForm.php, line 2975

Class

WebformSubmissionForm
Provides a webform to collect and edit submissions.

Namespace

Drupal\webform

Code

protected function getStorage() {
  return $this->entityTypeManager
    ->getStorage('webform_submission');
}