sarga/packages/Webkul/Core/src/CoreConvention.php

16 lines
258 B
PHP
Raw Normal View History

2020-09-09 07:30:26 +00:00
<?php
namespace Webkul\Core;
use Konekt\Concord\Conventions\ConcordDefault;
2020-09-09 07:30:26 +00:00
class CoreConvention extends ConcordDefault
2020-09-09 07:30:26 +00:00
{
/**
* @inheritDoc
*/
public function migrationsFolder(): string
{
return 'Database/Migrations';
}
}