When I try to add more than one inner join in my query I have the following error:
Scanning error before '] JOIN [] JOIN [...' when parsing
Here's my code:
$query = myModelHere::query()
->innerJoin("Model1")
->innerJoin("Model2")
->limit(10)
->execute();
Someone had that problem?