コード例 #1
0
ファイル: Int.php プロジェクト: ZoranFF/Types
 public function add($val)
 {
     $add = new Int($val);
     $this->val += $add->get();
     return $this;
 }