Jaspaul/laravel-rollout

View on GitHub
src/Console/DeleteCommand.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Jaspaul\LaravelRollout\Console;

class DeleteCommand extends RolloutCommand
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'rollout:delete {feature}';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Deletes the feature with the provided name.';

    /**
     * Deletes the provided feature.
     *
     * @return void
     */
    public function handle()
    {
        $name = $this->argument('feature');
        $this->rollout->remove($name);
        $this->line(sprintf("The '%s' flag was removed.", $name));
    }
}