Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 7016 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 7016 Rev 7047
Línea 193... Línea 193...
193
        
193
        
194
        return $this->executeFetchOneObject($select, $prototype);
194
        return $this->executeFetchOneObject($select, $prototype);
Línea -... Línea 195...
-
 
195
    }
-
 
196
 
-
 
197
    
-
 
198
    /**
-
 
199
     *
-
 
200
     * @param int $id
-
 
201
     * @return PlanningPeriod
-
 
202
     */
-
 
203
    public function fetchOne($id)
-
 
204
    {
-
 
205
        $prototype = new PlanningPeriod();
-
 
206
        $select = $this->sql->select(self::_TABLE);
-
 
207
        $select->where->equalTo('id', $id);
-
 
208
        
195
    }
209
        return $this->executeFetchOneObject($select, $prototype);
196
 
210
    }