Question

Currently I am doing this

$product = myProductCalss::myproduct($id);
$product = $product->myproduct;

is there another slick way to do this so that I can kinda do it in one liner?

Was it helpful?

Solution

THis should work:

$product = myProductCalss::myproduct($id)->myproduct;

Your question doesn`t belong here, check https://codereview.stackexchange.com/questions/tagged/php

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top