]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - app/DoctrineMigrations/Version20161104073720.php
Update deps
[github/wallabag/wallabag.git] / app / DoctrineMigrations / Version20161104073720.php
index e2b18a46018ea5be5973c7e8ca4a2715b5f39914..e0289ec9aec5e672d8675a8ebd01977536263d62 100644 (file)
@@ -12,9 +12,6 @@ class Version20161104073720 extends WallabagMigration
 {
     private $indexName = 'IDX_entry_created_at';
 
-    /**
-     * @param Schema $schema
-     */
     public function up(Schema $schema)
     {
         $entryTable = $schema->getTable($this->getTable('entry'));
@@ -23,9 +20,6 @@ class Version20161104073720 extends WallabagMigration
         $entryTable->addIndex(['created_at'], $this->indexName);
     }
 
-    /**
-     * @param Schema $schema
-     */
     public function down(Schema $schema)
     {
         $entryTable = $schema->getTable($this->getTable('entry'));