Code before processing:
$this->create()->content()
->asd($result)
->json($result);
Code after processing:
$this
->create()
->content()
->asd($result)
->json($result);
This option is also suitable, but the previous one is preferable:
$this->create()
->content()
->asd($result)
->json($result);