Contains() public method

public Contains ( $Key )
コード例 #1
0
ファイル: IdentityMap.php プロジェクト: timetoogo/penumbra
 public final function GetFromCache(Object\Identity $Identity)
 {
     $IdentityHash = $Identity->Hash();
     return $this->Cache->Contains($IdentityHash) ? $this->Cache->Retrieve($IdentityHash) : null;
 }