Sébastien Nikolaou

Results 28 comments of Sébastien Nikolaou

I have the same issue while creating a set: `HTTP code 422. Set type is not included in the list`, although I have a `playlist_type` in my data.

Hi, I have submitted a [pull request](https://github.com/mptre/php-soundcloud/pull/28) regarding some of these errors.

I have the same issue here, and I'm still trying to debug this. It seems that the events from the `Star` component are emitted, but the `StarRating` component is not...

Hello, you could achieve this in several ways, but it depends on how your roles/permissions are structured. If you are using gates/policies as guards for the transitions, `$sm->getPossibleTransitions()` will only...

You're welcome! You can definitely use this package, and it will work the same as if you had your own gates/policies. I will take a look at spatie/laravel-permission and will...

Hello @himan72 , Here is an example of some permissions set up with spatie/laravel permissions: ```php $writer = Role::findByName('writer'); $writer->givePermissionTo('submit articles'); $admin = Role::findByName('admin'); $admin->givePermissionTo('submit articles'); $admin->givePermissionTo('publish articles'); $admin->givePermissionTo('unpublish articles');...

Hey @divan-mt @himan72 , I believe with this configuration that it would NOT check the policies. The reason is because in the configuration there is no `'args' => ['object'],` for...

That's strange. I installed the package (v1.4.0) to a fresh laravel project (v5.8.19), and it works fine. Could you paste the whole stack trace here? Did you try running `composer...

I was able to reproduce the error by installing `laravel-ide-helper` and running the `ide-helper:meta` command. This is quite obscure, but I think it might be related to Symfony 4.3 which...

After some tinkering I found that the `ide-helper:meta` command throws a `ReflectionException` when a class cannot be loaded, and then it's catching the `Exception`. Now the `EventDispatcherInterface` in Symfony 4.3...