Completed
Push — master ( 605cf4...2dcac2 )
by Richard
05:16
created
src/App/IndexDB.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -60,6 +60,9 @@  discard block
 block discarded – undo
60 60
      */
61 61
     protected $id_counter = 0;
62 62
 
63
+    /**
64
+     * @param \Doctrine\DBAL\Connection $connection
65
+     */
63 66
     public function __construct($connection) {
64 67
         parent::__construct($connection);
65 68
         foreach ($this->tables as $table => $_) {
@@ -180,6 +183,9 @@  discard block
 block discarded – undo
180 183
         $which = [];
181 184
     }
182 185
 
186
+    /**
187
+     * @param string $table
188
+     */
183 189
     protected function append_and_maybe_flush($table, $values) {
184 190
         if ($values[0] === null) {
185 191
             $id = $this->id_counter++;
@@ -197,6 +203,10 @@  discard block
 block discarded – undo
197 203
 
198 204
         return $id;
199 205
     }
206
+
207
+    /**
208
+     * @param string $str
209
+     */
200 210
     protected function esc_str($str) {
201 211
         assert('is_string($str)');
202 212
         return '"'.str_replace('"', '""', $str).'"';
@@ -340,6 +350,9 @@  discard block
 block discarded – undo
340 350
 
341 351
     // INIT DATABASE
342 352
 
353
+    /**
354
+     * @param string $name
355
+     */
343 356
     public function init_table($name, Schema\Schema $schema, Schema\Table $file_table = null, Schema\Table $namespace_table = null) {
344 357
         assert('array_key_exists($name, $this->tables)');
345 358
         $table = $schema->createTable($name);
Please login to merge, or discard this patch.