]> source.dussan.org Git - nextcloud-server.git/commitdiff
add a getter for the table
authorRobin Appelman <icewind@owncloud.com>
Wed, 7 May 2014 10:53:42 +0000 (12:53 +0200)
committerRobin Appelman <icewind@owncloud.com>
Tue, 3 Jun 2014 09:18:46 +0000 (11:18 +0200)
lib/private/db/migrationexception.php

index f257534812fc0b901124d54fb5ce5c51a5a6f268..f3c908aa40a13a6c040cdf658701731a0b5accdf 100644 (file)
@@ -16,4 +16,11 @@ class MigrationException extends \Exception {
                $this->$table = $table;
                parent::__construct($message);
        }
+
+       /**
+        * @return string
+        */
+       public function getTable() {
+               return $this->table;
+       }
 }