Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
invoiceshelf
/
modules
/
src
/
Publishing
:
MigrationPublisher.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Nwidart\Modules\Publishing; use Nwidart\Modules\Migrations\Migrator; class MigrationPublisher extends AssetPublisher { /** * @var Migrator */ private $migrator; /** * MigrationPublisher constructor. * @param Migrator $migrator */ public function __construct(Migrator $migrator) { $this->migrator = $migrator; parent::__construct($migrator->getModule()); } /** * Get destination path. * * @return string */ public function getDestinationPath() { return $this->repository->config('paths.migration'); } /** * Get source path. * * @return string */ public function getSourcePath() { return $this->migrator->getPath(); } }