Claudio Ludovico

Results 18 comments of Claudio Ludovico

My [vuejs-carousel](https://github.com/ludo237/vuejs-carousel) has full support for Vue 2, it does not have heavy dependencies, aside from moment.js and it's different from the other carousels in the new list because it...

Type hinting and php 7 drop are welcome addictions for a major version

Why just don't user an helper function 😕

I think it's too early to tackle down exception even because on Laravel 5.5 and 5.6 you can handler everything using the renderable interface

> @pimlie The problem is fortawesome repo root index files are using old modules so doing import from root iconsets imports the whole set even if you write partial imports...

If you need to fake only a specific subset you can bass an array to `fake` method in order to let you use others jobs. Also you can split your...

You should create your mock without the observer in place if you don't need that in a specific test ```php User::withoutEvents(function() { return factory(User::class)->create(); // Or whatever you use to...

> I need to fake the job in all tests except one test. If you have different tests you can call `Bus::fake(MyJobClass::class)` in every tests except the one when you...

@idsulik mixed feeling about it. I'd like to see each test in isolation from other tests. That's why I try to avoid using `setUp` and `tearDown` when not necessary. I'd...

Agree with @mfn this is a DOC pr rather than an idea for Laravel