for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebTheory\Collection\Access;
use WebTheory\Collection\Access\Abstracts\AbstractArrayDriver;
use WebTheory\Collection\Access\Abstracts\RejectsDuplicateObjectsTrait;
use WebTheory\Collection\Contracts\ArrayDriverInterface;
class StandardMap extends AbstractArrayDriver implements ArrayDriverInterface
{
use RejectsDuplicateObjectsTrait;
public function append(array &$array, object $item, $offset = null): void
$array[$offset] = $item;
}