mirror of
https://github.com/kevin-DL/LaravelShoppingcart.git
synced 2026-01-12 02:55:13 +00:00
11 lines
197 B
PHP
11 lines
197 B
PHP
<?php
|
|
|
|
namespace Gloudemans\Shoppingcart\Contracts;
|
|
|
|
use Gloudemans\Shoppingcart\CartItem;
|
|
|
|
interface Calculator
|
|
{
|
|
public static function getAttribute(string $attribute, CartItem $cartItem);
|
|
}
|