for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Triadev\Leopard\Console\Commands\Mapping;
use Illuminate\Console\Command;
abstract class BaseCommand extends Command
{
/**
* Get mapping path
*
* @return string
*/
public function getMappingPath() : string
return app()->databasePath() . DIRECTORY_SEPARATOR . 'mappings';
}