Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare( strict_types = 1 ); |
| 4 | |
| 5 | namespace EntitySchema\DataAccess; |
| 6 | |
| 7 | /** |
| 8 | * @license GPL-2.0-or-later |
| 9 | */ |
| 10 | interface EntitySchemaInserter { |
| 11 | |
| 12 | /** |
| 13 | * @param string $language |
| 14 | * @param string $label |
| 15 | * @param string $description |
| 16 | * @param string[] $aliases |
| 17 | * @param string $schemaText |
| 18 | * |
| 19 | * @return EntitySchemaStatus |
| 20 | */ |
| 21 | public function insertSchema( |
| 22 | string $language, |
| 23 | string $label, |
| 24 | string $description, |
| 25 | array $aliases, |
| 26 | string $schemaText |
| 27 | ): EntitySchemaStatus; |
| 28 | |
| 29 | } |