Patrick Carlo-Hickman

Results 13 comments of Patrick Carlo-Hickman

@ChristianChoi, Unfortunately, queued event handlers are not supported (yet). I took a look at Laravel's implementation, and the problem is that your listener isn't actually what is sent to the...

@pomcho555 , @Binternet , I appreciate the patience on this. The package has been updated to support both Laravel 9x and 10x, as well as PHP 8+. The new 3.0.0...

The readme has been updated to mention that queued event listeners are not supported right now. I will make a comment on this issue if they ever are supported. Thanks,...

@jesseschutt , I appreciate the PR for this! I had been working on getting the package updated to support Laravel 9.x and 10.x. I released a new version today that...

Is there an issue with the migration, or is this error occurring somewhere else? I did not have any issues running that migration. Can you show the code that is...

@ben182 Unfortunately, this seems like more of a question for the forums or StackOverflow. It is not something addressed by this package.

@iamjrock The `belongsTo`, `hasOne`, `hasOneThrough`, and `morphOne` relationships allow you to specify a default return value if a related record doesn't exist. This allows you to follow the Null Object...

Another option is to use a new connector instance with a null authenticator to get the access token. ``` public function defaultAuth(): ?TokenAuthenticator { $cachedToken = cache()->remember('token, now()->addHour(), function() {...

@labomatik , Changing the authenticator won't affect the `oauthConfig` property that is already set on the connector. However, the `NullAuthenticator` doesn't use this config data at all, so I think...

@jorqensen , The `currentPage` variable is used to track which page the paginator is currently on. When you start and haven't made any requests, the current page is 0 (or,...