| 1 | <?php |
||
| 21 | abstract class AbstractSet extends AbstractCollection |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Adds the specified element to this set if it is not already present (optional operation). |
||
| 25 | * |
||
| 26 | * @param mixed $element |
||
| 27 | * @return bool true if this set did not already contain the specified element |
||
| 28 | */ |
||
| 29 | public function add($element) |
||
| 36 | |||
| 37 | public function offsetSet($offset, $value) |
||
| 44 | } |
||
| 45 |