예제 #1
0
 /**
  * Generates and saves aliases for the given join identifier and all its parents
  *
  * @param string $joinId
  */
 protected function addTableAliasesForJoinIdentifier($joinId)
 {
     $joinIds = $this->joinIdHelper->explodeJoinIdentifier($joinId);
     $this->addTableAliasesForJoinIdentifiers($joinIds);
 }
예제 #2
0
 /**
  * @dataProvider explodeJoinIdentifierProvider
  */
 public function testExplodeJoinIdentifier($joinId, $expected)
 {
     $this->assertEquals($expected, $this->helper->explodeJoinIdentifier($joinId));
 }