Closed mikeerickson closed 4 years ago
The problem is that you are extending from the Laravel driver, but since you override the bootstrap
method, you never call the origin driver's bootstrap code.
Either remove the method, or call the parent bootstrap method with your own custom code.
I am testing a very simple driver, and when I include the
bootstrap
method, it causes an error when loading custom project.If I remove the
bootstrap
method, everything works as expected.The simple driver code (basically pulled from example below)