gruene-seele/packages/shoppingcart/CartItemOptions.php
2025-04-01 10:39:21 +02:00

19 lines
No EOL
312 B
PHP

<?php
namespace App\Packages\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);
}
}