/home/brandsfa/public_html/vendor/nwidart/laravel-modules/src/Contracts/RunableInterface.php
<?php

namespace Nwidart\Modules\Contracts;

interface RunableInterface
{
    /**
     * Run the specified command.
     *
     * @param string $command
     */
    public function run($command);
}