Alex Weissman
Alex Weissman
Ah, didn't see that. So is this setting already exposed through `ufTable` then?
The problem here is that PHPMailer 6 has [changed the namespace of all classes](https://github.com/PHPMailer/PHPMailer/blob/master/UPGRADING.md), including moving the `\phpmailerException` to `PHPMailer\PHPMailer\Exception`. UF's exception handler requires that the fully-qualified name of the...
What do you propose? In my Sprunjes, I've been creating a new method that allows me to access the underlying `query` object: // Controller $sprunje = (new StudentSprunje($classMapper, $params))->forWorker($worker); //...
Yes, I agree, I'm starting to see a lot of structural issues with `Sprunje`. Maybe we should add this to the UF5 roadmap? I also want to add a `properties`...
Yeah, I want to add this as an option at some point (actually, I had tried to implement it before but I couldn't get it to work). Basically we need...
I wouldn't call this a bug, though. In some circumstances, the ability to add an element multiple times, might actually be the desired behavior.
Maybe it's a bug in the specific context of the way we're using it for user roles and role permissions?
Yep, I'm already using it in my projects to model different types of users with different aux tables. No matter what you'll have to extend a base model and use...
@x00x70 can you look in to this?