We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the latest Laravel versions, job batching was introduced. It seems that NeoEloquent is not able to run Bus::batch($jobs) as expected.
Bus::batch($jobs)
Try batching a single job, to test it out.
Jobs to be batched and dispatched.
ERROR Call to undefined method Vinelab\NeoEloquent\DatabaseDriver\Drivers\Laudis\ResultSet::current() in vendor/ulobby/neoeloquent/src/Query/Builder.php on line 841. Error Call to undefined method Vinelab\NeoEloquent\DatabaseDriver\Drivers\Laudis\ResultSet::current() at vendor/ulobby/neoeloquent/src/Query/Builder.php:841 837▕ * @return mixed|static 838▕ */ 839▕ public function first($columns = ['*']) 840▕ { ➜841▕ $results = $this->take( 1)->get($columns)->current(); 842▕ 843▕ return (isset($results[ 0]) && count($results[ 0]) > 0) ? $results[ 0]->getProperties() : null; 844▕ } 845▕
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description:
In the latest Laravel versions, job batching was introduced. It seems that NeoEloquent is not able to run
Bus::batch($jobs)
as expected.Steps To Reproduce:
Try batching a single job, to test it out.
Expected result
Jobs to be batched and dispatched.
Actual result
The text was updated successfully, but these errors were encountered: