foundation-laravel icon indicating copy to clipboard operation
foundation-laravel copied to clipboard

[DEPRECATED] See https://github.com/lucidarch/lucid

Results 2 foundation-laravel issues
Sort by recently updated
recently updated
newest added

The current implementation of ServeFeaturesTrait doesn't allow for the following: ```php $output = $this->serve(new GetReachEstimateFeature($adAccount, $accessToken)); ``` which is inconsistent with `JobDispatcherTrait` that offers 2 alternative styles of passing constructor...

Example of problem: Run job in Feature ``` $this->runInQueue(MyJob::class, [ 'var3' => 'var3', 'Var2' => 'var2', 'Var1' => 'var1' ], 'q1'); ``` Job ``` class MyJob extends Job implements ShouldQueue...