Skip to content

Minor update: test file header

Compare
Choose a tag to compare
@rawsrc rawsrc released this 30 Oct 08:35
· 19 commits to master since this release

Minor update:
Instead of having in the test file header:

include_once 'Pilot.php';
include_once 'Report.php';
include_once 'Runner.php';

use Exacodis\Pilot;
use Exacodis\Report;
use Exacodis\Runner;

You just have now:

include_once 'Pilot.php';

use Exacodis\{ Pilot, Report, Runner };