예제 #1
0
파일: Int.php 프로젝트: ZoranFF/Types
 public function add($val)
 {
     $add = new Int($val);
     $this->val += $add->get();
     return $this;
 }