for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Waredesk\Collections\Products\Variants;
use Waredesk\Collection;
use Waredesk\Models\Product\Variant\Price;
/**
* @method Price first()
* @method Price current()
* @method Price next()
*/
class Prices extends Collection
{
* @param Price $item
public function add($item)
parent::add($item);
}