Alessandro Minoccheri

Results 54 comments of Alessandro Minoccheri

We can add to `SearchParams` type the new property `caseSensitive` nullable and we can pass to the function `tokenize` the param to apply, or not, the lower case.

I think that we can add this as a little feature, not so much effort. And if we will add a better algorithm we can remove the feature. I think...

Override the blocks I'ts a solution but I think that you could calling the function `setColumnsOrder` by passing it an array with the columns id in order @grekpg

What do you mean with " I do not have the right data", which data do you retrieve? What do you expected instead? @charfeddine-mahmoud

If you print `$data` before you return the response what do you retrieve?

IMHO I prefer Value Objects, to explicit arguments. Using Value Objects increases testability and it's more clear for me.

IMHO I think it's better to switch to the Value Objects approach. It's a refactoring that adds a new feature. We can also add other things in this way.

Hi @alessandro-candon, thanks for this issue, it's very interesting what you want to achieve. 1. At the moment we don't have the rule to specify if it's inside a class...

@alessandro-candon So if I understood well, we need: * `onlyDependOnComponents` rule `definedBy` with regexp is already implemented as you can see into this test file: https://github.com/phparkitect/arkitect/blob/main/tests/Unit/Architecture/ArchitectureTest.php Without using components there...

@alessandro-candon in this PR #278 I am trying to add the `shouldOnlyDependOnComponents` that can solve your problem maybe. What do you think?