felixarntz/plugin-lib

View on GitHub
src/cli-command-aggregate.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * CLI command aggregate class
 *
 * @package Leaves_And_Love\Plugin_Lib
 * @since 1.0.0
 */

namespace Leaves_And_Love\Plugin_Lib;

if ( ! class_exists( 'Leaves_And_Love\Plugin_Lib\CLI_Command_Aggregate' ) ) :

    /**
     * Dummy class for an empty aggregate command without any subcommands.
     *
     * @since 1.0.0
     */
    final class CLI_Command_Aggregate {

    }

endif;