| Total Complexity | 5 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 19 | final class SyncTables implements GeneratorInterface |
||
| 20 | { |
||
| 21 | // Readonly tables must be included form the sync with database |
||
| 22 | public const READONLY_SCHEMA = 'readonlySchema'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param Registry $registry |
||
| 26 | * @return Registry |
||
| 27 | * |
||
| 28 | * @throws SyncException |
||
| 29 | */ |
||
| 30 | public function run(Registry $registry): Registry |
||
| 48 | } |
||
| 49 | } |