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


PHP stdClass::getWrappedObject方法代码示例

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


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

示例1: exact

 /**
  * @param \stdClass $object
  */
 function it_wraps_non_token_arguments_into_ExactValueToken($object)
 {
     $this->beConstructedWith(array(42, 'zet', $object));
     $class = get_class($object->getWrappedObject());
     $hash = spl_object_hash($object->getWrappedObject());
     $this->__toString()->shouldReturn("exact(42), exact(\"zet\"), exact({$class}:{$hash} Object (\n    'objectProphecy' => Prophecy\\Prophecy\\ObjectProphecy Object (*Prophecy*)\n))");
 }
开发者ID:huycao,项目名称:yodelivery,代码行数:10,代码来源:ArgumentsWildcardSpec.php

示例2: sprintf

 /**
  * @param \stdClass $object
  */
 function it_generates_proper_string_representation_for_object($object)
 {
     $objHash = sprintf('%s:%s', get_class($object->getWrappedObject()), spl_object_hash($object->getWrappedObject()));
     $this->beConstructedWith($object);
     $this->__toString()->shouldReturn("exact({$objHash} Object (\n    'objectProphecy' => Prophecy\\Prophecy\\ObjectProphecy Object (*Prophecy*)\n))");
 }
开发者ID:Ceciceciceci,项目名称:MySJSU-Class-Registration,代码行数:9,代码来源:ExactValueTokenSpec.php

示例3: sprintf

 /**
  * @param stdClass $object
  */
 function it_generates_proper_string_representation_for_object_without_exporting($object)
 {
     $objHash = sprintf('%s:%s', get_class($object->getWrappedObject()), spl_object_hash($object->getWrappedObject()));
     $this->stringify($object, FALSE)->shouldReturn("{$objHash}");
 }
开发者ID:mrbadao,项目名称:api-official,代码行数:8,代码来源:StringUtilSpec.php

示例4: it_should_use_classname_if_entity_is_no_ResourceInterface

 /**
  * @param \BjyAuthorize\Service\Authorize $authorizeService
  * @param \stdClass                       $entity
  */
 public function it_should_use_classname_if_entity_is_no_ResourceInterface($authorizeService, $entity)
 {
     $authorizeService->isAllowed(Argument::cetera())->willReturn(true);
     $this->mockListenerFactory($authorizeService->getWrappedObject());
     $className = get_class($entity->getWrappedObject());
     $permission = 'permission';
     $this->isAllowed($entity, $permission);
     $authorizeService->isAllowed($className, $permission)->shouldBeCalled();
 }
开发者ID:phpro,项目名称:zf-smartcrud,代码行数:13,代码来源:BjyAuthorizeSpec.php


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