File "TestTask.php"

Full Path: /home/attunedd/public_html/wp-content/plugins/wpide/App/Tasks/TestTask.php
File size: 179 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace WPIDE\App\Tasks;

class TestTask extends Task
{

    public static function handle($task_id, $args): bool
    {
        // Handle task
        return true;
    }
}