| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | public function transform( array $images, $fsname = 'fs-media' ) : string |
||
| 32 | { |
||
| 33 | $srcset = []; |
||
| 34 | $view = $this->view(); |
||
| 35 | |||
| 36 | foreach( $images as $type => $path ) { |
||
| 37 | $srcset[] = $view->content( $path, $fsname ) . ' ' . max( 1, $type ) . 'w'; |
||
|
|
|||
| 38 | } |
||
| 39 | |||
| 40 | return join( ', ', $srcset ); |
||
| 41 | } |
||
| 43 |