Log message #4222131

# At Username Text
# Jan 13th 2020, 12:28 javier.villanueva ;)
# Jan 13th 2020, 12:27 admad Si
# Jan 13th 2020, 12:26 javier.villanueva This is a good option ? :point_up_2:
# Jan 13th 2020, 12:24 javier.villanueva ```$articles->getConnection()->transactional(function () use ($articles, $entities) { $article = $articles->newEntity(); });```
# Jan 13th 2020, 12:22 javier.villanueva If I want save an entity and after link related data with it, wich is the best way to make it transactional (just in case related fails)?
# Jan 13th 2020, 11:30 neon1024 @tjkalinowski I am curious why you talk in code
# Jan 13th 2020, 11:18 dereuromark If the sniff exists, this seems to be a path problem then. it cannot find the other sniff repos.
# Jan 13th 2020, 11:18 tjkalinowski ```Why ordering is not working?```
# Jan 13th 2020, 11:17 neon1024 Yep, seems to be 4.x issue
# Jan 13th 2020, 11:14 dereuromark probably.
# Jan 13th 2020, 11:13 neon1024 Is this because I’m on 4.0.0 of the sniffer?
# Jan 13th 2020, 11:11 neon1024 I setup cakephp/cakephp-codesniffer and configured it in phpstorm and get this all the time. Anyone have any ideas?
# Jan 13th 2020, 11:00 dereuromark those are still the same tool (the first), all the same.
# Jan 13th 2020, 10:57 challgren My cs-check is `vendor/bin/phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP --runtime-set ignore_warnings_on_exit true --extensions=php --ignore=tests/test_files/,config/Seeds/,config/Migrations/ src/ tests/ config/` and my cs-fix is `vendor/bin/phpcbf --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP --extensions=php --ignore=tests/test_files/ src/ tests/ config/`
# Jan 13th 2020, 10:56 neon1024 Which is a standard for the squizlabs one ;)
# Jan 13th 2020, 10:55 challgren Theres also https://github.com/cakephp/cakephp-codesniffer
# Jan 13th 2020, 10:50 dereuromark phpcsfixer has a few bad practices IMO in terms of exdendability (prevention), and is sometimes a bit too opininated in a bad way). So most still use the first.
# Jan 13th 2020, 10:44 neon1024 As PHPCS comes with PHPCBF for fixing
# Jan 13th 2020, 10:44 neon1024 What are the differences between https://github.com/FriendsOfPHP/PHP-CS-Fixer and https://github.com/squizlabs/PHP_CodeSniffer
# Jan 13th 2020, 08:13 javier.villanueva morning all
# Jan 13th 2020, 07:05 hanumanprasad.yadav Thanks @admad
# Jan 13th 2020, 06:54 admad yes something like that
# Jan 13th 2020, 06:53 hanumanprasad.yadav Ok, then we need to user this: https://book.cakephp.org/3/en/orm/query-builder.html#subqueries right?
# Jan 13th 2020, 06:53 admad and to get `exists` you'll probably need to use query expressoin
# Jan 13th 2020, 06:51 admad so you need subqueries, hence forget matching() as it does joins. The book has examples for using sub queries
# Jan 13th 2020, 06:47 hanumanprasad.yadav @admad please check below simple query example for above requirement: select * from `users` where exists (select * from `listings` where `users`.`id` = `listings`.`user_id`) or exists (select * from `organizations` where `users`.`id` = `organizations`.`user_id`)
# Jan 13th 2020, 06:33 admad step 1: come up with the SQL query needed to achieve what you want
# Jan 13th 2020, 06:24 slackebot solution about this type of query
# Jan 13th 2020, 06:24 slackebot this case if anyone listing available then we need result and also anyone Organizations available then we need result but if both Listings or Organizations not available then we don't need result. Current query: $query = $this->Users->find(); $query->matching('Listings'); $query->matching('Organizations'); I need like this: $query = $this->Users->find(); $query->matching('Listings'); $query->orMatching('Organizations'); Please help me if have any
# Jan 13th 2020, 06:24 hanumanprasad.yadav I have a problem on Retrieving Data with matching 2 different different tables. I want if any one table match condition from both tables then we want the result. it is possible using matching? this behavior like we need according to matching and orMacthing scenario My requirement is: I have 3 Models: 1) Users 2) Listings 3) Organizations Now I am find the result using Users Model with matching Listings and Organizations and in
# Jan 13th 2020, 03:18 kani Hello
# Jan 12th 2020, 19:13 tjkalinowski I had problem with CakePHP and Mac. I turn to MAMP.
# Jan 12th 2020, 18:39 kiwi_50 Hi! Anyone with trouble running CakePHP on Mac with Homebrew httpd?
# Jan 12th 2020, 11:24 challgren haha ok
# Jan 12th 2020, 11:23 tibor.hajos Thanks for the help! That was the one I've been following. For some reason sphp did nothing. For now I've just made an alias for the brew commands. Perhaps things will break tomorrow at my job, but we'll see about that tomorrow 8)
# Jan 12th 2020, 11:18 challgren The best guide Ive seen so far
# Jan 12th 2020, 11:18 challgren https://getgrav.org/blog/macos-catalina-apache-multiple-php-versions
# Jan 12th 2020, 11:18 tibor.hajos I just tried it and all seems fine. I can get started
# Jan 12th 2020, 11:16 tibor.hajos I have some config in the ini that I want to preserve. I don't know if ```brew unlink php@7.0 brew link php@7.2``` will preserve that
# Jan 12th 2020, 11:12 tibor.hajos Trying to install sphp
# Jan 12th 2020, 11:12 tibor.hajos yes