28 lines
566 B
PHP
28 lines
566 B
PHP
<?php
|
|
/**
|
|
* @package akeebabackupwp
|
|
* @copyright Copyright (c)2014-2019 Nicholas K. Dionysopoulos / Akeeba Ltd
|
|
* @license GNU GPL version 3 or later
|
|
*/
|
|
|
|
namespace Akeeba\WPCLI\Command;
|
|
|
|
// This dummy class is required for WP-CLI to print a description for the `akeeba` namespace
|
|
|
|
use Akeeba\Engine\Factory;
|
|
use Akeeba\Engine\Platform;
|
|
use Awf\Mvc\Model;
|
|
use Solo\Application;
|
|
use WP_CLI;
|
|
|
|
/**
|
|
* Manage your site backups using Akeeba Backup for WordPress
|
|
*
|
|
* @package Akeeba\WPCLI\Command
|
|
*
|
|
* @since 3.0.0
|
|
*/
|
|
class NamespaceDescription
|
|
{
|
|
}
|