Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriksm committed Oct 16, 2023
1 parent 4bc7cc8 commit 289f320
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Updater.php
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public function setDevPackage($devPackage)
$this->devPackage = $devPackage;
}

protected function getPreUpdataData() : array
protected function getPreUpdateData() : array
{
$pre_update_lock = ComposerLockData::createFromFile($this->cwd . '/composer.lock');
return array_map(function($package) use ($pre_update_lock) {
Expand Down Expand Up @@ -327,7 +327,7 @@ public function executeRequire($new_version)
*/
public function executeUpdate()
{
$pre_update_data = $this->getPreUpdataData();
$pre_update_data = $this->getPreUpdateData();
$commands = $this->getUpdateRecipies();
$exception = null;
$success = false;
Expand Down

0 comments on commit 289f320

Please sign in to comment.