| Conditions | 4 | 
| Paths | 3 | 
| Total Lines | 15 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 15 | public function call() | ||
| 16 |     { | ||
| 17 | $builder = $this->getBuilder(); | ||
| 18 | |||
| 19 |         $files = $this->getParam('files', []); | ||
| 20 | |||
| 21 |         foreach ($files as $file) { | ||
| 22 |             if (! is_file($file) || ! is_writeable($file)) { | ||
| 23 |                 $builder->down()->withData('file', $file); | ||
| 24 | } | ||
| 25 | } | ||
| 26 | |||
| 27 |         $builder->withData('files', $files); | ||
| 28 | |||
| 29 | return $builder->build(); | ||
| 30 | } | ||
| 32 |