11 lines
114 B
PHP
11 lines
114 B
PHP
<?php
|
|
|
|
|
|
namespace app\models\parsed;
|
|
|
|
|
|
interface CartInterface
|
|
{
|
|
public function setCart(CartModel $model);
|
|
}
|