/** * intをIntegerオブジェクトに変換 **/ function i($value) { if ($value instanceof Charcoal_Integer) { return $value; } return $value !== NULL ? new Charcoal_Integer($value) : Charcoal_Integer::defaultValue(); }
public function add(Charcoal_Integer $add) { return new Charcoal_Integer($this->getValue() + $add->getValue()); }