Skip to content
Snippets Groups Projects

php8 only; added variable types; short array syntax; remove glyphicons

Merged Hahn Axel (hahn) requested to merge 7359-update-php83 into master
3 files
+ 716
661
Compare changes
  • Side-by-side
  • Inline

Files

@@ -1129,10 +1129,10 @@ class project extends base
/**
* check if the given phase is active for this project
* @param type $sPhase
* @return type
* @param string $sPhase
* @return bool
*/
public function isActivePhase($sPhase)
public function isActivePhase(string $sPhase): bool
{
return (
$this->_aPrjConfig && isset($this->_aPrjConfig["phases"][$sPhase]["active"][0])
Loading