/home/techb158/ileadtechnology.com/vendor/ramsey/collection/src
NameSizeModeActions
Exception/-0755rm
Map/-0755rm
Tool/-0755rm
AbstractArray.php48450644editdlrm
AbstractCollection.php89260644editdlrm
AbstractSet.php11100644editdlrm
ArrayInterface.php10150644editdlrm
Collection.php26090644editdlrm
CollectionInterface.php68600644editdlrm
DoubleEndedQueue.php37790644editdlrm
DoubleEndedQueueInterface.php106340644editdlrm
GenericArray.php5210644editdlrm
Queue.php38150644editdlrm
QueueInterface.php75190644editdlrm
Set.php17890644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/ramsey/collection/src/AbstractSet.php (1110B)
* @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Collection; /** * This class contains the basic implementation of a collection that does not * allow duplicated values (a set), to minimize the effort required to implement * this specific type of collection. * * @template T * @template-extends AbstractCollection */ abstract class AbstractSet extends AbstractCollection { /** * @inheritDoc */ public function add($element): bool { if ($this->contains($element)) { return false; } return parent::add($element); } /** * @inheritDoc */ public function offsetSet($offset, $value): void { if ($this->contains($value)) { return; } parent::offsetSet($offset, $value); } }