Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip already moved packages #19

Merged
merged 2 commits into from
Jun 24, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/Mover.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ class Mover
/** @var Filesystem */
protected $filesystem;

/** @var array */
protected $movedPackages = [];

public function __construct($workingDir, $config)
{
$this->workingDir = $workingDir;
Expand All @@ -42,6 +45,10 @@ public function deleteTargetDirs()

public function movePackage(Package $package)
{
if ( in_array( $package->config->name, $this->movedPackages ) ) {
return;
}

foreach ($package->autoloaders as $autoloader) {
if ($autoloader instanceof NamespaceAutoloader) {
$finder = new Finder();
Expand Down Expand Up @@ -79,6 +86,8 @@ public function movePackage(Package $package)
}
}
}

$this->movedPackages[] = $package->config->name;
}
}

Expand Down
2 changes: 1 addition & 1 deletion tests/replacers/NamespaceReplacerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class NamespaceReplacerTest extends TestCase
/** @var NamespaceReplacer */
public $replacer;

public function setUp()
protected function setUp()
{
$autoloader = new Psr0();
$autoloader->namespace = 'Test\\Test';
Expand Down