Nicolas Dermine
Nicolas Dermine
IIRC prettier-php mostly follows the PSR-12 coding standard which asks for PHP reserved keywords to be lower case: https://www.php-fig.org/psr/psr-12/#25-keywords-and-types maybe you could use a "cs-fixer" that would be applied after...
hi @jbersamin-vitech , (I don't know much about this but) this line of your `.prettierrc.json` stood out to me: `"files": ["*.p"],` should it be `*.php` ? (or maybe your php...
Hi, the tutorial is available online: https://sonic-pi.net/tutorial.html
Hi Joe, `take` is described in the tutorial, in chapter 8.5, Ring Chains. You would like to see it listed in the 'Lang' tab of the help system? nico On...
Thank you. I will try to be more precise : the second part of the sentence does not make sense to me : "you do have to be careful that...
here is the pull request: https://github.com/greenlion/PHP-SQL-Parser/pull/295
Hi @f1r3starter, I haven't checked yet but it's probably due to the merging of this PR : https://github.com/greenlion/PHP-SQL-Parser/pull/295 (if you need to revert those changes temporarily) I'll try to see...
I opened a PR : https://github.com/greenlion/PHP-SQL-Parser/pull/306 to try and fix this. Hopefully someone with a better understanding of that code can have a look.
hi @normous do you have a use statement such as: `use PHPSQLParser\PHPSQLParser;` ?
it looks like array destructuring (but I don't know what the `sync` function returns, or much Ruby) ```ruby $ irb irb(main):001:0> a, b = [1, 2] => [1, 2] irb(main):002:0>...