justin-oh
justin-oh
If an "each" method _does_ get added, it might be worth adding other helper methods. For example: ``` php // implementation public function sum(Closure $p) { $sum = 0; $this->each(function($key,...
I'm commenting in case anyone encounters this specific error through a Google search. (Sorry in advance if this comment re-opens the issue.) In my case, the error was caused by...
This broke for me in potentially a different way when I went from 5.3.2 to 5.3.3. These are the pertinent variables as set by Bootstrap: ```scss $modal-inner-padding: $spacer !default; $modal-header-padding-y:...
I can confirm through the same means (fiddling around in the inspector of https://getbootstrap.com/docs/5.3/components/offcanvas/) that the offcanvas button position also fails if either of `--bs-offcanvas-padding-x` or `--bs-offcanvas-padding-y` are 0. But...
I'm also running into an issue with the module not being recognized through the syntax `import NiceSelect from 'nice-select2';`. I'm using Symfony's Webpack Encore and receiving this error: ``` Module...
I understand that the `asset:install` command will copy files from any bundle with `Resources/public/` into `/public/bundles/nameofbundle/`. Could the Asset Mapper hijack that command or disable it and instead copy things...
> Did you try with the configuration explained here : https://symfony.com/doc/current/frontend/asset_mapper.html#importing-assets-outside-of-the-assets-directory ? I did not, but I don't think that is a sustainable option since every bundle that has assets...
Using `'by_reference' => false` worked out for me. I missed that tidbit about how it works with `CollectionType` in the last sentence of https://symfony.com/doc/6.4/reference/forms/types/collection.html#by-reference. It seems the explanation of `by_reference`...
> And with the « urlencode » env processor does this works? From https://symfony.com/doc/current/configuration/env_var_processors.html I'm on version 6.4 so that is not an option.
Right, I forgot about that. Still, it could be possible to configure aspects of PasswordStrength at a global level even if the attribute/constraint had to be applied explicitly. That brings...