Skip to content

Commit

Permalink
[TASK] Remove default method provideConfigFilePath (#32)
Browse files Browse the repository at this point in the history
* [TASK] Remove default method provideConfigFilePath

Relates: rectorphp/rector#6415

* [TASK] Implement method provideConfigFilePath
  • Loading branch information
sabbelasichon authored May 14, 2021
1 parent bdaa8e0 commit 84bac4a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/Testing/PHPUnit/AbstractRectorTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,6 @@ protected function setUp(): void
$configuration->setIsDryRun(true);
}

public function provideConfigFilePath(): string
{
// must be implemented
return '';
}

/**
* @return Iterator<SmartFileInfo>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,9 @@ public function provideData(): Iterator
],
];
}

public function provideConfigFilePath(): string
{
return '';
}
}

0 comments on commit 84bac4a

Please sign in to comment.