コード例 #1
0
ファイル: TypedCollection.php プロジェクト: Rybbow/x-blog
 /**
  * {@inheritdoc}
  */
 public function offsetSet($offset, $value)
 {
     $this->verifyTypeIntegrity($value);
     $this->verifyUnique($offset, $value);
     parent::offsetSet($offset, $value);
 }