Exemplo n.º 1
0
 /**
  *
  * {@inheritDoc}
  * @see \Verona\Value\ListValue::add()
  */
 public function add(...$values)
 {
     foreach ($values as $value) {
         if (!in_array($value, $this->getAll())) {
             parent::add($value);
         }
     }
     return $this;
 }