Dumplie\Customer\Domain\Cart::id PHP 메소드

id() 공개 메소드

public id ( ) : CartId
리턴 CartId
    public function id() : CartId
    {
        return $this->id;
    }

Usage Example

예제 #1
0
 /**
  * @param Cart $cart
  */
 public function add(Cart $cart)
 {
     $this->carts[(string) $cart->id()] = $cart;
 }