Skip to content

Commit

Permalink
Linting: linting code
Browse files Browse the repository at this point in the history
  • Loading branch information
WunderJacob committed Oct 30, 2024
1 parent 364a144 commit a4ed4ea
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions classes/wbCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ public function execute() {
raise_memory_limit(MEMORY_EXTRA);
$extracted = $this->extract_save_zip_file();
if (!$extracted) {
return [
'feedback' => $this->feedback,
'finished' => [
'status' => false,
'currentstep' => 0,
'maxstep' => 0,
]
];
return [
'feedback' => $this->feedback,
'finished' => [
'status' => false,
'currentstep' => 0,
'maxstep' => 0,
],
];
}
$this->check_recipe($extracted);
$this->clean_after_installment();
Expand Down
2 changes: 1 addition & 1 deletion classes/wbInstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function execute($extractpath, $parent = null) {
'status' => false,
'currentstep' => 0,
'maxstep' => 0,
]
],
];
}
$response = $this->execute_recipe($extracted);
Expand Down

0 comments on commit a4ed4ea

Please sign in to comment.