Michal Lulco

Results 28 comments of Michal Lulco

merge master into this branch, I've fixed phpunit

Hi, thanks for report. The diff command was created just as proof of concept and it has several issues (default column lengths, column settings etc.). It just generates some skeleton...

Interesting, it is new for me. `From [MariaDB 10.2.7](https://mariadb.com/kb/en/mariadb-1027-release-notes/), literals are quoted to distinguish them from expressions. NULL means that the column has no default.` We already have mechanism for...

Hi, thank you for your report. In time when Phoenix was created, I wanted to support only features that are common for both mysql and psql. As I personally don't...

I'd appreciate PRs for both. So go for it :)

Hi @thevikas for this purpose, I use this hack, hope it will help you: ``` use Dredd\Hooks; Hooks::beforeAll(function(&$transactions) { $newTransactions = []; foreach ($transactions as $transaction) { if (strpos($transaction->name, '...

I found out that clone not working here, I used another hack unserialize(serialize($transaction)); and now it works (I hope :))

Like I wrote somewhere, I'm using https://github.com/revealphp/reveal-src (previously in symplify) for some months maybe year already and it works like a charm for my projects.

Hi @MartinMystikJonas, @dg I am thinking about this too... What about this: ``` /** @var int $a */ $a = $this->params['a']; /** @var string $b */ $b = $this->params['b']; /**...

@jakubvojacek I don't think so. `@var` annotations are just first part of it. I tried to add them to compiled templates and run phpstan on them but there are many...