$files->when()
The when method only executes the given Closure when the first parameter is true. If the first parameter is false, the Closure will not be executed.
$files->when(mixed $condition, Closure $callback, Closure $fallback = null): mixed
Parameters
| Name | Type | Default | 
|---|---|---|
| $condition * | mixed | 
                – | 
| $callback * | Closure | 
                – | 
| $fallback | Closure | 
                null | 
        
              
Return type
mixed
Parent class
  Kirby\Cms\Files    inherited from Kirby\Toolkit\Collection