Files
LaravelShoppingcart/src/CartItemOptions.php
2019-01-14 18:05:10 +01:00

21 lines
318 B
PHP

<?php
namespace Gloudemans\Shoppingcart;
use Illuminate\Support\Collection;
class CartItemOptions extends Collection
{
/**
* Get the option by the given key.
*
* @param string $key
*
* @return mixed
*/
public function __get($key)
{
return $this->get($key);
}
}