gabrielbull/php-waredesk-api

View on GitHub
src/Collections/Products/Variants/Prices.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Waredesk\Collections\Products\Variants;

use Waredesk\Collection;
use Waredesk\Models\Product\Variant\Price;

/**
 * @method Price first()
 * @method Price current()
 * @method Price next()
 * @method Price offsetGet($offset)
 */
class Prices extends Collection
{
    /**
     * @param Price $item
     */
    public function add($item): void
    {
        parent::add($item);
    }
}