robob4him
robob4him
PHP-CS-Fixer is an especially useful tool for helping with many common CS issues. Integration would be much appreciated!
PHP 5.4 included support for the array initialize in the format of "[]" instead of "array()"
SQLite does not appreciate parentheses in UNION: ``` sql (SELECT "4" AS "column1") UNION (SELECT "5" AS "column1") ``` ``` php $select = (new Combine()) ->union( [ (new Select())->columns(['column1' =>...
Considering that a UNION should be able to replace an aliased table in a query, is there any reason the Select class prohibits doing this: ``` php (new Select(['u' =>...