Exemplo n.º 1
0
 /**
  * @covers SQLJoin::getTable
  */
 public function testGetTable()
 {
     $this->assertSame('users', $this->object->getTable());
 }
 /**
  * @return Joiner
  **/
 public function join(SQLJoin $join)
 {
     $this->from[] = $join;
     $this->tables[$join->getTable()] = true;
     return $this;
 }