Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/elementor/core/database/base-migration.php

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + <?php
2 +
3 + namespace Elementor\Core\Database;
4 +
5 + abstract class Base_Migration {
6 + /**
7 + * Runs when upgrading the database
8 + *
9 + * @return void
10 + */
11 + abstract public function up();
12 + }
13 +