first commit
This commit is contained in:
13
vendor/phpunit/php-token-stream/tests/_fixture/php-code-coverage-issue-424.php
vendored
Normal file
13
vendor/phpunit/php-token-stream/tests/_fixture/php-code-coverage-issue-424.php
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
class Example
|
||||
{
|
||||
public function even($numbers)
|
||||
{
|
||||
$numbers = array_filter($numbers, function($number) {
|
||||
return $number % 2 === 0;
|
||||
});
|
||||
|
||||
return array_merge($numbers);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user