Fenos\Notifynder\NotifynderServiceProvider::publishMigration PHP Метод

publishMigration() защищенный Метод

protected publishMigration ( string $filename )
$filename string
    protected function publishMigration($filename)
    {
        $extension = '.php';
        $filename = trim($filename, $extension) . $extension;
        $stub = __DIR__ . '/../migrations/' . $filename;
        $target = $this->migrationFilepath($filename);
        $this->publishes([$stub => $target], 'migrations');
    }