Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5693 Rev 6749
Línea 55... Línea 55...
55
 
55
 
56
        $prototype = new Conversation();
56
        $prototype = new Conversation();
57
        return $this->executeFetchOneObject($select, $prototype);
57
        return $this->executeFetchOneObject($select, $prototype);
Línea -... Línea 58...
-
 
58
    }
-
 
59
 
-
 
60
    
-
 
61
    
-
 
62
    /**
-
 
63
     *
-
 
64
     * @param string $uuid
-
 
65
     * @return Conversation
-
 
66
     */
-
 
67
    public function fetchByUuid($uuid)
-
 
68
    {
-
 
69
        $select = $this->sql->select(self::_TABLE);
-
 
70
        $select->where->equalTo('uuid', $uuid);
-
 
71
        
-
 
72
        $prototype = new Conversation();
-
 
73
        return $this->executeFetchOneObject($select, $prototype);
-
 
74
    }
Línea 58... Línea 75...
58
    }
75
    
59
 
76
    
Línea 106... Línea 123...
106
            ->unnest()
123
            ->unnest()
107
            ->unnest();
124
            ->unnest();
Línea 108... Línea 125...
108
 
125
 
109
        return $this->executeFetchAllObject($select, $prototype);
126
        return $this->executeFetchAllObject($select, $prototype);
-
 
127
    }
-
 
128
    
Línea 110... Línea 129...
110
    }
129
 
111
 
130