/var/www/flurhymez/vendor/ramsey/collection/src
NameSizeModeActions
Exception/-0755rm
Map/-0755rm
Tool/-0755rm
AbstractArray.php56330644editdlrm
AbstractCollection.php90370644editdlrm
AbstractSet.php11010644editdlrm
ArrayInterface.php10970644editdlrm
Collection.php26000644editdlrm
CollectionInterface.php68510644editdlrm
DoubleEndedQueue.php37610644editdlrm
DoubleEndedQueueInterface.php106250644editdlrm
GenericArray.php5120644editdlrm
Queue.php37970644editdlrm
QueueInterface.php75100644editdlrm
Set.php17800644editdlrm
Edit: /var/www/flurhymez/vendor/ramsey/collection/src/AbstractSet.php (1101B)
* @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 * @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); } }