Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
image-optimization
/
classes
/
migration
:
migration.php
Advanced Search
Upload
New Item
Settings
-- Select Mode --
-- Select Theme --
-- Select Font Size --
Back
Back Up
Normal Editor
Save
<?php namespace ImageOptimization\Classes\Migration; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } abstract class Migration { abstract public static function run(): bool; abstract public static function get_name(): string; }