<?php

namespace Modules\Blog\Console\Replacements;

use Nwidart\Modules\Support\ReplacementKeyCommand;

class Demo extends ReplacementKeyCommand
{
    public function handle(): string
    {
        return $this->generator->getModule()->getLowerName();
    }
}
