<?php namespace Calculate; class calculator{ public function sum(...$args) { return array_sum($args); } public function init(){ return $this->sum(5, 10); } } $cal = new calculator(); print $cal->init(); // Expected Output is 15
You have javascript disabled. You will not be able to edit any code.