Skip to content
Snippets Groups Projects
Commit 6f5de738 authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

fix parsed php problems

parent 9370bdfe
No related branches found
No related tags found
1 merge request!66php8 only; added variable types; short array syntax; remove glyphicons
......@@ -12,18 +12,19 @@ class rollout_ssh extends rollout_base {
/**
* check requirements if the plugin could work
* @return array
*/
public function checkRequirements() {
// no specific checks needed ... always true
return true;
public function checkRequirements(): array {
// no specific checks needed ... always empty
return [];
}
/**
* check access to a deploy target
*/
public function checkConnectionToTarget() {
// do nothing ... always true
return true;
// do nothing ... always empty
return [];
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment