<?php final class WithTrailingComma { public function run(): void { $array = [1, 2, 3]; $this->map( $array, var_dump( ..., ) ); } private function map(array $items, callable $callback): void { foreach($items as $i) { $callback($i); } } }
You have javascript disabled. You will not be able to edit any code.