Basicly what I want to do is run afterUpdate function of the model without fetching the data in controller, because I don't need it there. $myModel = MyModel::findFirst("id='$paramID'"); // This runs SELECT. Can I get model without this SELECT? $myModel->afterUpdate();
Is it possible to use findFirst and not fetch any data? Just get the model?