Michał Bundyra

Results 85 issues of Michał Bundyra

This issue has been moved from the `zendframework` repository as part of the bug migration program as outlined here - http://framework.zend.com/blog/2016-04-11-issue-closures.html --- Original Issue: https://api.github.com/repos/zendframework/zendframework/issues/7192 User: @claytondaley Created On: 2015-02-06T16:14:35Z...

This issue has been moved from the `zendframework` repository as part of the bug migration program as outlined here - http://framework.zend.com/blog/2016-04-11-issue-closures.html --- Original Issue: https://api.github.com/repos/zendframework/zendframework/issues/7172 User: @Martin-P Created On: 2015-01-31T00:36:54Z...

This issue has been moved from the `zendframework` repository as part of the bug migration program as outlined here - http://framework.zend.com/blog/2016-04-11-issue-closures.html --- Original Issue: https://api.github.com/repos/zendframework/zendframework/issues/7156 User: @epoleacov Created On: 2015-01-25T22:22:49Z...

Hey there! If i attach following validator to my validator chain and validate emails like `[email protected]` or `[email protected]` or simply my own domain i will get the `Validator\EmailAddress::INVALID_SEGMENT` message printed....

This is a proposal of ResultInterface about the stateless validator proposal made in: - https://github.com/zendframework/zend-validator/issues/1 - https://github.com/bakura10/zend-validator/pull/1 /cc @bakura10 @zendframework/community-review-team --- Originally posted by @Maks3w at https://github.com/zendframework/zend-validator/pull/24

Awaiting Maintainer Response
Enhancement
Question
Work In Progress

Hi, I've done a massive PR to this (https://github.com/zendframework/zf2/pull/5067) but it's a massive work and a big hell to review. I suggest that we: 1. Move validators to their specifc...

In Line 141 of /src/ValidatorPluginManager.php a new Initializer is added by the line: ``` $this->addInitializer([$this, 'injectTranslator']); ``` after parent::__construct() is called. Which means, that on creation of a new validator...

Awaiting Author Updates

Configuring a 'message' option on validators should return that single message on failure. (ref http://framework.zend.com/manual/current/en/modules/zend.validator.messages.html) > The second parameter defines the failure which will be overridden. When you omit this...

Awaiting Author Updates

Abstract Class Zend\Validator\Db\AbstractDb; The function getSelect has a bug when you the exclude parameter contains a Zend\Db\Sql\Where parameter ``` if ($this->exclude !== null) { if (is_array($this->exclude)) { $select->where->notEqualTo( $this->exclude['field'], $this->exclude['value']...

As the `\Zend\Validator\AbstractValidator::createMessage` method uses `var_export` to convert arrays to strings this fails if the array contains a circular reference. The problem line is https://github.com/zendframework/zend-validator/blob/master/src/AbstractValidator.php#L294. I've provided a quick example...