Tuğrul Topuz

Results 28 comments of Tuğrul Topuz

``` php if ($this->request->isPost() && $form->isValid($_POST, $customer)) { $customer->ours = empty($_POST['ours']) ? 0 : 1; $customer->save(); } ``` I changed `isset` to `empty` because there is a different behavior between...

@dhansen err, res are not global, because there are declarated as function's argument. function's arguments create impact like "var" declaration.

I stopped using this library. I started using @felixge 's node-mysql library.

Hi @jschaedl, Your suggestion to add an option to the existing validation class was my other idea. I opted for the other one as it seems cleaner to make the...

@jschaedl can you take an action? I also implemented your suggestion and created another pull request.

I also created a pull request for the trait implementation. You may choose one of the 3 pull requests you like and reject the other two.

Hi @jschaedl Can you review this? I'm working on a migration job and this blocks me.

@mcollina I quickly lookup and only we need destroy remaining readable streams if it is an `Array` when error occurs on previous readable readings. This control not necessary for iterables...

@chalasr I've decided against implementing an internal controller action for AJAX requests. It's important to note that there's no missing code, as the CSRF token will still be validated by...

Please open this issue. Small change can fix this problem. https://github.com/whiteoctober/Pagerfanta/blob/master/src/Pagerfanta/Adapter/DoctrineDbalAdapter.php#L57 ```php private function prepareCountQueryBuilder() { $qb = clone $this->queryBuilder; return call_user_func($this->countQueryBuilderModifier, $qb) ?? $qb; } ``` I tried to...