refactor: remove builder class and use concrete class

tests: added more unit tests for event processor
This commit is contained in:
2018-10-27 01:19:34 -05:00
parent f239099d55
commit 5201db7d22
15 changed files with 834 additions and 166 deletions

13
tests/bootstrap.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
$loader = require __DIR__ . '/../vendor/autoload.php';
if (!$loader) {
die(<<<'EOT'
You must set up the project dependencies, run the following command:
composer install
EOT
);
}
return $loader;