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