I have model and in this model contains a function to SUM 1 + 1 Why should I have to make this function non-static?
The difference is an only instantiable class or not?
Calling static function in Controller
Model.sumFunction()
Calling non-static function in Controller
let model = Model()
model.sumFunction
What's a real difference?