rm tmp
[m6w6/pq-gateway] / lib / pq / Gateway / Row.php
index 5c0efa4ac19a30da22c3bb7627d8ffb4bd58ada5..0a2820aa612b5462fd537a214d0c3bff63ef4e83 100644 (file)
@@ -26,7 +26,7 @@ class Row implements \JsonSerializable
         */
        function __construct(Table $table, array $data = null, $prime = false) {
                $this->table = $table;
-               $this->data = $data;
+               $this->data = (array) $data;
                
                if ($prime) {
                        $this->prime();
@@ -79,6 +79,12 @@ class Row implements \JsonSerializable
                return false;
        }
        
+       function refresh() {
+               $this->data = $this->table->find($this->criteria(), null, 1, 0)->current()->data;
+               $this->cell = array();
+               return $this;
+       }
+       
        /**
         * Fill modified cells
         * @return \pq\Gateway\Row