Kevin Pfeifer

Results 191 comments of Kevin Pfeifer

The support for input type number has been great for quite some time. We also default to it in the FormHelper so we should adapt this as well imho. Input...

I just tried it with the FloatType (since my db columns are of type `float`) via doing ``` \Cake\Database\TypeFactory::build('float')->useLocaleParser(); ``` inside my bootstrap.php but this problem still exists for me

> Sadly due to backwards compatibility issues we can't change it even in 5.x :( yes, but we can at least document it and make it clear how it currently...

Sounds to me like a race condition problem since this only happens with multiple php processes, right?

Theoretically, if we could map this to https://api.cakephp.org we could maybe throw a build error when the mapped method doesn't exist. Then we can just do something like ``` .....

The `debug_kit` will automatically be enabled if you have the debug_mode enabled due to how its configured in your `config/plugins.php` You don't need to add it again in your Application.php...

I am just curious now: What OS are you running so that a PHP 8.2 installation can live parallel to such an ancient sqlite library... This probably isn't Docker or...

I can confirm this problem ``` boltcms@home [03:32:07 PM] [~/httpdocs] -> % bin/console make:controller Choose a name for your controller class (e.g. BraveGnomeController): > MyTestController created: src/Controller/MyTestController.php created: vendor/bolt/core/templates/my_test/index.html.twig Success!...

If the maker bundle is not required for anything "directly" bolt related I also think, that making it "optional" (and therefore a user requested dependency in the apps composer.json) is...

The problem with PostgreSQL enums is the fact, that (only in PostgreSQL) they are sort of a custom column type instead of a generic `enum` column type (like in [MySQL...