Completed
Pull Request — 8.x-1.x (#126)
by Janez
02:06
created

EntityBrowserWizardAdd::getRouteName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/**
3
 * @file
4
 * Contains \Drupal\entity_browser\Wizard\EntityBrowserWizardAdd.
5
 */
6
7
namespace Drupal\entity_browser\Wizard;
8
9
/**
10
 * Custom override for create form.
11
 */
12
class EntityBrowserWizardAdd extends EntityBrowserWizard {
13
14
  /**
15
   * {@inheritdoc}
16
   */
17
  public function getRouteName() {
18
    return 'entity.entity_browser.edit_form';
19
  }
20
21
}
22