ok
Direktori : /home2/selectio/www/3-idiots/vendor/nwidart/laravel-modules/src/Publishing/ |
Current File : /home2/selectio/www/3-idiots/vendor/nwidart/laravel-modules/src/Publishing/MigrationPublisher.php |
<?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(); } }