Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| EntitySchemaSubmitAction | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| getName | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | declare( strict_types = 1 ); |
| 4 | |
| 5 | namespace EntitySchema\MediaWiki\Actions; |
| 6 | |
| 7 | /** |
| 8 | * Action to handle a submitted EntitySchema page |
| 9 | * |
| 10 | * @license GPL-2.0-or-later |
| 11 | */ |
| 12 | class EntitySchemaSubmitAction extends EntitySchemaEditAction { |
| 13 | |
| 14 | public function getName(): string { |
| 15 | return 'submit'; |
| 16 | } |
| 17 | |
| 18 | } |