App\Console\Commands\SkinMake::getSkinDescription PHP Method

getSkinDescription() protected method

getSkinDescription
protected getSkinDescription ( $id, PluginEntity $plugin ) : array | string
$id
$plugin Xpressengine\Plugin\PluginEntity
return array | string
    protected function getSkinDescription($id, PluginEntity $plugin)
    {
        $description = $this->option('description');
        if (!$description) {
            $description = 'The Skin supported by ' . ucfirst($plugin->getId()) . ' plugin.';
        }
        return $description;
    }