コード例 #1
0
 /**
  * @param mixed $shoppingListId
  * @return ShoppingList
  */
 public function getShoppingList($shoppingListId = null)
 {
     return $this->shoppingListManager->getForCurrentUser($shoppingListId);
 }
コード例 #2
0
 public function testGetForCurrentUser()
 {
     $shoppingList = $this->manager->getForCurrentUser();
     $this->assertInstanceOf('OroB2B\\Bundle\\ShoppingListBundle\\Entity\\ShoppingList', $shoppingList);
 }