Luke Kuzmish
Luke Kuzmish
This change allows for initializing a window with content, rather than setting it after the window has been created. ```python main_box = toga.Box() # was main_window = toga.MainWindow(title="Window title!") main_window.content...
#### Why? I think private visibility of the IntercomClient methods is a hinderance. In a project I am working on, I need to decorate the `handleResponse()` method so that it...
To resolve https://github.com/slimphp/Slim-Psr7/issues/288
I want to be able to check if any of a user's related models have a particular feature enabled. ```php $schools = $user->loadMissing('schools'); $featureIsActive = Feature::for($schools)->someAreActive('enrolled-in-beta'); ``` But this actually...
As our team focuses on creating more testable components, we prefer unit tests over feature tests. Even better for those unit tests if they don't require the Laravel framework to...
[1.x] Allow retrieving all features for a scope when some features are defined for differing scopes
This should resolve https://github.com/laravel/pennant/issues/112 We are building a feature flags endpoint for our mobile and web consumers. We need to be able to get all features for 3-4 scopes which...
Our project extends the package Media model. We also "extended" the `InteractsWithMedia` trait. Trying to get phpstan to work with the library code would be a lot easier if there...
I'm happy to implement a solution here, just not sure of the best approach. I think the most precise solution is to check if the $node in PrivateInFinalClass has a...
### Feature Description I love how using $request->validated('some_field') shows hints about the parameter fields based on the FormRequest's `rules()` method. I would love to see this extended to use with...
## Goal Provide the ability to set a specific status code on responses. ## Background I'm using the package for error response messages (rather than throwing exceptions). For instance, we...