The phpunit.xml split into unit + integration testsuites requires the integration directory to exist on disk, even when empty. The .gitkeep keeps the directory present in fresh checkouts and on CI; the first real integration test in a later task will replace the placeholder.
7 lines
167 B
Plaintext
7 lines
167 B
Plaintext
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
// Placeholder so PHPUnit's integration test suite has a directory to scan.
|
|
// The first real integration tests land in a later task.
|