gabrielbull/php-waredesk-api

View on GitHub
src/Collections/Inventory/Items/Attributes.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Waredesk\Collections\Inventory\Items;

use Waredesk\Collection;
use Waredesk\Models\Inventory\Item\Attribute;

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