public function getAll() { $conexion = new Conexion(); $consulta = $conexion->prepare('SELECT * FROM ' . self::TABLA); $consulta->execute(); while ($registro = $consulta->fetch()) { $estado = new Estado(); $estado->construir($registro); $array[] = $estado; } return $array; }