コード例 #1
0
ファイル: TypedCollection.php プロジェクト: Innmind/Immutable
 /**
  * {@inheritdoc}
  */
 public function pad(int $size, $value) : CollectionInterface
 {
     $this->validate($this->type, [$value]);
     return new self($this->type, parent::pad($size, $value)->toPrimitive());
 }