| Conditions | 3 | 
| Paths | 3 | 
| Total Lines | 15 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 3 | ||
| Bugs | 1 | Features | 0 | 
| 1 | <?php  | 
            ||
| 14 | public function execute()  | 
            ||
| 15 |     { | 
            ||
| 16 |         if ($this->input->getOption('noDownload')) { | 
            ||
| 17 | return false;  | 
            ||
| 18 | }  | 
            ||
| 19 | |||
| 20 |         $installationFolder = $this->config->getString('installationFolder'); | 
            ||
| 21 | chdir($installationFolder);  | 
            ||
| 22 | |||
| 23 |         $flag = $this->getOptionalBooleanOption('installSampleData', 'Install sample data?'); | 
            ||
| 24 | |||
| 25 |         if ($flag) { | 
            ||
| 26 | $this->runSampleDataInstaller();  | 
            ||
| 27 | }  | 
            ||
| 28 | }  | 
            ||
| 29 | |||
| 61 | 
This check compares the return type specified in the
@returnannotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.