15 lines
294 B
PHP
15 lines
294 B
PHP
<?php
|
|
|
|
namespace KupShop\ShoppingListBundle\View;
|
|
|
|
use KupShop\KupShopBundle\Views\Traits\RequestTrait;
|
|
|
|
class ShoppingListSharedView extends ShoppingListProductsView
|
|
{
|
|
use RequestTrait;
|
|
|
|
protected $idList;
|
|
|
|
protected $template = 'shoppingList/shopping-list-shared-products.tpl';
|
|
}
|