eddiriarte
Results
2
issues of
eddiriarte
Allows to select jobs from folders (https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Folders+Plugin). It shows only jobs in the first three levels.
this: ```php protected function firstItem(): ?CustomClass { if (count($this->list) < 1) { return null; } return $this->list[0]; } ``` is beeing transformed to.... ```php protected function firstItem(): ? CustomClass {...