當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Uuid::equals方法代碼示例

本文整理匯總了PHP中Rhumsaa\Uuid\Uuid::equals方法的典型用法代碼示例。如果您正苦於以下問題:PHP Uuid::equals方法的具體用法?PHP Uuid::equals怎麽用?PHP Uuid::equals使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Rhumsaa\Uuid\Uuid的用法示例。


在下文中一共展示了Uuid::equals方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: equals

 /**
  * @param mixed $other
  * @return bool
  */
 public function equals($other)
 {
     return $other instanceof static && $this->uuid->equals($other->uuid);
 }
開發者ID:simple-es,項目名稱:ramsey-uuid-bridge,代碼行數:8,代碼來源:UuidCapabilities.php

示例2: equals

 /**
  * @param TaskListId $taskListId
  * @return bool
  */
 public function equals(TaskListId $taskListId)
 {
     return $this->nodeName()->equals($taskListId->nodeName()) && $this->processId()->equals($taskListId->processId()) && $this->uuid->equals($taskListId->uuid);
 }
開發者ID:prooph,項目名稱:processing,代碼行數:8,代碼來源:TaskListId.php

示例3: equals

 /**
  * @param EquatableInterface $other
  *
  * @return bool
  */
 public function equals(EquatableInterface $other)
 {
     return $other instanceof AbstractId && $this->value->equals($other->getUuid());
 }
開發者ID:Rybbow,項目名稱:x-blog,代碼行數:9,代碼來源:AbstractId.php

示例4: it_has_a_uuid

 /**
  * @test
  */
 public function it_has_a_uuid()
 {
     $this->assertTrue($this->uuid->equals($this->command->uuid()));
 }
開發者ID:MattKetmo,項目名稱:common,代碼行數:7,代碼來源:CommandTest.php

示例5: equals

 public function equals(StatementId $id)
 {
     return $this->uuid->equals($id->uuid);
 }
開發者ID:php-xapi,項目名稱:model,代碼行數:4,代碼來源:StatementId.php

示例6:

 /**
  * @test
  */
 function it_has_a_uuid()
 {
     $this->assertTrue($this->uuid->equals($this->domainEvent->uuid()));
 }
開發者ID:prolic,項目名稱:common,代碼行數:7,代碼來源:DomainEventTest.php

示例7: equals

 /**
  * @param ProcessId $processId
  * @return bool
  */
 public function equals(ProcessId $processId)
 {
     return $this->uuid->equals($processId->uuid);
 }
開發者ID:prooph,項目名稱:processing,代碼行數:8,代碼來源:ProcessId.php


注:本文中的Rhumsaa\Uuid\Uuid::equals方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。