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


PHP InvalidArgumentException::stringExpected方法代码示例

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


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

示例1: checkData

 /**
  * Check if data is valid
  *
  * @param AttributeInterface $attribute
  * @param mixed              $data
  */
 protected function checkData(AttributeInterface $attribute, $data)
 {
     if (null === $data) {
         return;
     }
     if (!is_string($data)) {
         throw InvalidArgumentException::stringExpected($attribute->getCode(), 'setter', 'simple select', gettype($data));
     }
 }
开发者ID:vpetrovych,项目名称:pim-community-dev,代码行数:15,代码来源:SimpleSelectAttributeSetter.php

示例2: setValue

 /**
  * {@inheritdoc}
  */
 public function setValue(array $products, AttributeInterface $attribute, $data, $locale = null, $scope = null)
 {
     $this->checkLocaleAndScope($attribute, $locale, $scope, 'text');
     if (null !== $data && !is_string($data)) {
         throw InvalidArgumentException::stringExpected($attribute->getCode(), 'setter', 'text', gettype($data));
     }
     foreach ($products as $product) {
         $this->setData($attribute, $product, $data, $locale, $scope);
     }
 }
开发者ID:ashutosh-srijan,项目名称:findit_akeneo,代码行数:13,代码来源:TextValueSetter.php

示例3: checkIdentifier

 /**
  * Check if value is a valid identifier
  *
  * @param string $field
  * @param mixed  $value
  * @param string $filter
  */
 public static function checkIdentifier($field, $value, $filter)
 {
     $invalidIdField = static::hasProperty($field) && static::getProperty($field) === 'id' && !is_numeric($value);
     $invalidDefaultField = !static::hasProperty($field) && !is_numeric($value);
     if ($invalidIdField || $invalidDefaultField) {
         throw InvalidArgumentException::numericExpected(static::getCode($field), 'filter', $filter, gettype($value));
     }
     $invalidStringField = static::hasProperty($field) && static::getProperty($field) !== 'id' && !is_string($value);
     if ($invalidStringField) {
         throw InvalidArgumentException::stringExpected(static::getCode($field), 'filter', $filter, gettype($value));
     }
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:19,代码来源:FieldFilterHelper.php

示例4: checkScalarValue

 /**
  * @param string $field
  * @param mixed  $value
  */
 protected function checkScalarValue($field, $value)
 {
     if (!is_string($value) && null !== $value) {
         throw InvalidArgumentException::stringExpected($field, 'filter', 'string', gettype($value));
     }
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:10,代码来源:StringFilter.php

示例5: checkValue

 /**
  * @param AttributeInterface $attribute
  * @param mixed              $value
  */
 protected function checkValue(AttributeInterface $attribute, $value)
 {
     if (!is_string($value)) {
         throw InvalidArgumentException::stringExpected($attribute->getCode(), 'filter', 'media', gettype($value));
     }
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:10,代码来源:MediaFilter.php

示例6: checkData

 /**
  * Check if data are valid
  *
  * @param string $field
  * @param mixed  $data
  */
 protected function checkData($field, $data)
 {
     if (!is_string($data) && null !== $data) {
         throw InvalidArgumentException::stringExpected($field, 'setter', 'variant_group', gettype($data));
     }
 }
开发者ID:vpetrovych,项目名称:pim-community-dev,代码行数:12,代码来源:VariantGroupFieldSetter.php

示例7: gettype

 function it_throws_an_exception_if_value_is_not_valid($image)
 {
     $image->getCode()->willReturn('media_code');
     $value = ['data' => 132, 'unit' => 'foo'];
     $this->shouldThrow(InvalidArgumentException::stringExpected('media_code', 'filter', 'media', gettype($value)))->during('addAttributeFilter', [$image, '=', $value]);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:6,代码来源:MediaFilterSpec.php

示例8: gettype

 function it_throws_an_error_if_data_is_not_a_string_or_null(AttributeInterface $attribute)
 {
     $attribute->getCode()->willReturn('attributeCode');
     $data = ['some', 'random', 'stuff'];
     $this->shouldThrow(InvalidArgumentException::stringExpected('attributeCode', 'setter', 'simple select', gettype($data)))->duringSetValue([], $attribute, $data, 'fr_FR', 'mobile');
 }
开发者ID:ashutosh-srijan,项目名称:findit_akeneo,代码行数:6,代码来源:SimpleSelectValueSetterSpec.php

示例9: checkValue

 /**
  * Check if value is valid
  *
  * @param string $field
  * @param mixed  $value
  */
 protected function checkValue($field, $value)
 {
     if (!is_string($value) && !is_array($value)) {
         throw InvalidArgumentException::stringExpected($field, 'filter', 'string', gettype($value));
     }
     if (is_array($value)) {
         foreach ($value as $stringValue) {
             if (!is_string($stringValue)) {
                 throw InvalidArgumentException::stringExpected($field, 'filter', 'string', gettype($value));
             }
         }
     }
 }
开发者ID:jacko972,项目名称:pim-community-dev,代码行数:19,代码来源:StringFilter.php

示例10:

 function it_checks_valid_data_format(ProductInterface $product)
 {
     $this->shouldThrow(InvalidArgumentException::stringExpected('family', 'setter', 'family', 'array'))->during('setFieldData', [$product, 'family', ['not a string']]);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:4,代码来源:FamilyFieldSetterSpec.php

示例11: gettype

 function it_throws_an_error_if_attribute_data_is_not_a_string_or_null(AttributeInterface $attribute, ProductInterface $product)
 {
     $attribute->getCode()->willReturn('attributeCode');
     $data = ['some', 'random', 'stuff'];
     $this->shouldThrow(InvalidArgumentException::stringExpected('attributeCode', 'setter', 'simple select', gettype($data)))->duringSetAttributeData($product, $attribute, $data, ['locale' => 'fr_FR', 'scope' => 'mobile']);
 }
开发者ID:vpetrovych,项目名称:pim-community-dev,代码行数:6,代码来源:SimpleSelectAttributeSetterSpec.php

示例12: gettype

 function it_throws_an_exception_if_value_is_not_a_string(AttributeInterface $attribute)
 {
     $attribute->getCode()->willReturn('attributeCode');
     $this->shouldThrow(InvalidArgumentException::stringExpected('attributeCode', 'filter', 'string', gettype(123)))->during('addAttributeFilter', [$attribute, '=', 123, null, null, ['field' => 'attributeCode']]);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:5,代码来源:StringFilterSpec.php

示例13: gettype

 function it_throws_an_error_if_data_is_not_a_string(AttributeInterface $attribute)
 {
     $attribute->getCode()->willReturn('attributeCode');
     $data = 42;
     $this->shouldThrow(InvalidArgumentException::stringExpected('attributeCode', 'setter', 'text', gettype($data)))->during('setValue', [[], $attribute, $data, 'fr_FR', 'mobile']);
 }
开发者ID:ashutosh-srijan,项目名称:findit_akeneo,代码行数:6,代码来源:TextValueSetterSpec.php


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