CS: tab2spaces
[grauphel.git] / lib / notestorage.php
index 121f5cb201a6c3335cab56fc015a89718463a113..77c8fc692a74fd47f33ab86e84c9fc0f89991f9c 100644 (file)
@@ -262,8 +262,8 @@ class NoteStorage
         \OC_DB::executeAudited(
             'DELETE FROM `*PREFIX*grauphel_notes`'
             . ' WHERE `note_user` = ? AND `note_guid` = ?',
         \OC_DB::executeAudited(
             'DELETE FROM `*PREFIX*grauphel_notes`'
             . ' WHERE `note_user` = ? AND `note_guid` = ?',
-                       array($username, $guid)
-               );
+            array($username, $guid)
+        );
     }
 
     /**
     }
 
     /**
@@ -277,15 +277,15 @@ class NoteStorage
      */
     public function loadNotesOverview($username, $since = null)
     {
      */
     public function loadNotesOverview($username, $since = null)
     {
-               $result = \OC_DB::executeAudited(
+        $result = \OC_DB::executeAudited(
             'SELECT `note_guid`, `note_title`, `note_last_sync_revision`'
             . ' FROM `*PREFIX*grauphel_notes`'
             . ' WHERE note_user = ?',
             'SELECT `note_guid`, `note_title`, `note_last_sync_revision`'
             . ' FROM `*PREFIX*grauphel_notes`'
             . ' WHERE note_user = ?',
-                       array($username)
-               );
+            array($username)
+        );
 
 
-               $notes = array();
-               while ($row = $result->fetchRow()) {
+        $notes = array();
+        while ($row = $result->fetchRow()) {
             if ($since !== null && $row['note_last_sync_revision'] <= $since) {
                 continue;
             }
             if ($since !== null && $row['note_last_sync_revision'] <= $since) {
                 continue;
             }
@@ -305,7 +305,7 @@ class NoteStorage
                 ),
                 'title' => $row['note_title'],
             );
                 ),
                 'title' => $row['note_title'],
             );
-               }
+        }
 
         return $notes;
     }
 
         return $notes;
     }
@@ -321,19 +321,19 @@ class NoteStorage
      */
     public function loadNotesFull($username, $since = null)
     {
      */
     public function loadNotesFull($username, $since = null)
     {
-               $result = \OC_DB::executeAudited(
+        $result = \OC_DB::executeAudited(
             'SELECT * FROM `*PREFIX*grauphel_notes`'
             . ' WHERE note_user = ?',
             'SELECT * FROM `*PREFIX*grauphel_notes`'
             . ' WHERE note_user = ?',
-                       array($username)
-               );
+            array($username)
+        );
 
 
-               $notes = array();
-               while ($row = $result->fetchRow()) {
+        $notes = array();
+        while ($row = $result->fetchRow()) {
             if ($since !== null && $row['note_last_sync_revision'] <= $since) {
                 continue;
             }
             $notes[] = $this->noteFromRow($row);
             if ($since !== null && $row['note_last_sync_revision'] <= $since) {
                 continue;
             }
             $notes[] = $this->noteFromRow($row);
-               }
+        }
 
         return $notes;
     }
 
         return $notes;
     }