当前位置: 首页>>代码示例>>PHP>>正文


PHP AttributeInterface::getNumberMax方法代码示例

本文整理汇总了PHP中Pim\Bundle\CatalogBundle\Model\AttributeInterface::getNumberMax方法的典型用法代码示例。如果您正苦于以下问题:PHP AttributeInterface::getNumberMax方法的具体用法?PHP AttributeInterface::getNumberMax怎么用?PHP AttributeInterface::getNumberMax使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Pim\Bundle\CatalogBundle\Model\AttributeInterface的用法示例。


在下文中一共展示了AttributeInterface::getNumberMax方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

 function it_adds_violation_when_min_is_greater_than_max($context, AttributeInterface $attribute, ValidNumberRange $constraint)
 {
     $attribute->getNumberMin()->willReturn(9);
     $attribute->getNumberMax()->willReturn(1);
     $attribute->isNegativeAllowed()->willReturn(false);
     $context->addViolationAt('numberMax', $constraint->message)->shouldBeCalled();
     $this->validate($attribute, $constraint);
 }
开发者ID:jacko972,项目名称:pim-community-dev,代码行数:8,代码来源:ValidNumberRangeValidatorSpec.php

示例2:

 function it_guesses_aggregated_guessers_with_range_without_notDecimal(AttributeInterface $attribute)
 {
     $attribute->getNumberMin()->willReturn(5);
     $attribute->getNumberMax()->willReturn(10);
     $attribute->isDecimalsAllowed()->willReturn(true);
     $constraints = $this->guessConstraints($attribute);
     $constraints->shouldHaveCount(1);
     $constraintsAll = $constraints[0];
     $constraintsAll->shouldBeAnInstanceOf('Symfony\\Component\\Validator\\Constraints\\All');
     $constraintsAll->constraints->shouldHaveCount(3);
     $constraintsAll->constraints[0]->shouldBeAnInstanceOf('Symfony\\Component\\Validator\\Constraints\\Type');
     $constraintsAll->constraints[0]->type->shouldBe('Pim\\Bundle\\CatalogBundle\\Model\\ProductPriceInterface');
     $constraintsAll->constraints[1]->shouldBeAnInstanceOf('Pim\\Bundle\\CatalogBundle\\Validator\\Constraints\\Numeric');
     $constraintsAll->constraints[2]->shouldBeAnInstanceOf('Pim\\Bundle\\CatalogBundle\\Validator\\Constraints\\Range');
 }
开发者ID:vpetrovych,项目名称:pim-community-dev,代码行数:15,代码来源:PriceCollectionGuesserSpec.php

示例3: guessConstraints

 /**
  * {@inheritdoc}
  */
 public function guessConstraints(AttributeInterface $attribute)
 {
     $constraints = array();
     if ('pim_catalog_date' === $attribute->getAttributeType()) {
         $min = $attribute->getDateMin();
         $max = $attribute->getDateMax();
     } else {
         $min = $attribute->getNumberMin();
         $max = $attribute->getNumberMax();
         if (false === $attribute->isNegativeAllowed() && ($min === null || $min < 0)) {
             $min = 0;
         }
     }
     if (null !== $min || null !== $max) {
         $constraints[] = new Range(array('min' => $min, 'max' => $max));
     }
     return $constraints;
 }
开发者ID:jacko972,项目名称:pim-community-dev,代码行数:21,代码来源:RangeGuesser.php

示例4:

 function it_does_not_guess_minmax_date(AttributeInterface $attribute)
 {
     $attribute->getAttributeType()->willReturn('pim_catalog_date');
     $attribute->getDateMin()->willReturn(null);
     $attribute->getDateMax()->willReturn(null);
     $attribute->getNumberMin()->shouldNotBeCalled();
     $attribute->getNumberMax()->shouldNotBeCalled();
     $attribute->isNegativeAllowed()->shouldNotBeCalled();
     $constraints = $this->guessConstraints($attribute);
     $constraints->shouldReturn([]);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:11,代码来源:RangeGuesserSpec.php


注:本文中的Pim\Bundle\CatalogBundle\Model\AttributeInterface::getNumberMax方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。