Sergei Morozov

Results 235 comments of Sergei Morozov

@jhdxr I made you an organization owner. You should be able to merge the PR now.

> As expected, downgrading to Xcode `8.3.3` solves the problem. I'm leaving this for other to reference. Seems similar to https://github.com/phpbrew/phpbrew/issues/923#issuecomment-343490506. > A question still remains: is there sth `phpbrew`...

It must have been broken by #931, I haven't tested in on `zsh`. @benharold in the meanwhile, you may try reverting changes in [this line](https://github.com/phpbrew/phpbrew/pull/931/files#diff-762d175a995eea2ddf86a331def30f59R22) in your `~/.phpbrew/bashrc`. > ```...

Hm… I cannot reproduce it locally with `zsh`: ``` ↪ echo $0 zsh ↪ zsh --version zsh 5.1.1 (x86_64-ubuntu-linux-gnu) ↪ PATH_WITHOUT_PHPBREW= ↪ source ~/.phpbrew/bashrc ↪ echo $PATH /home/morozov/.phpbrew/php/php-7.2.1/bin:/home/morozov/.phpbrew/bin:~/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin ↪ echo...

@UDK what PHP are you running? According to the [documentation](https://www.php.net/manual/en/phar.installation.php): > The Phar extension is bundled with PHP as of PHP version 5.3.0, and enabled by default. Please see what...

``` mysql_config not found configure: error: Please reinstall the mysql distribution ``` Could you double-check if `mysql_config` is actually installed? If not, `apt-get install libmysqlclient-dev` should help. If I'm not...

I have been always thinking of the coding standard requiring type annotations as a way to enable static analysis tools, not as a solution on its own. As long as...

`NotFound` is more readable. `NotFoundException` is the same nonsense as `UserClass` or `$userVariable`.

The change in https://github.com/doctrine/dbal/pull/4253 is not about the coding standard. It's about removing the meaningless DBAL prefix from the class name. All exceptions under the `Doctrine\DBAL` namespace are DBAL exceptions...

> The documentation even says `The Doctrine Coding Standard is a set of rules for PHP_CodeSniffer and applies to all Doctrine projects.` This can be applied to the existing Doctrine...