Sylius\Behat\Context\Ui\Admin\ManagingTaxonsContext::iShouldBeNotifiedThatTheFirstImageShouldHaveAnUniqueCode PHP Method

iShouldBeNotifiedThatTheFirstImageShouldHaveAnUniqueCode() public method

    public function iShouldBeNotifiedThatTheFirstImageShouldHaveAnUniqueCode($imageNumber)
    {
        preg_match_all('!\\d+!', $imageNumber, $matches);
        Assert::same($this->updatePage->getValidationMessageForImageAtPlace((int) $matches[0][0] - 1), 'Image code must be unique within this taxon.');
    }