Browse Source

Merge pull request #12608 from o0h/fix-deprecated-warning-message

Fix deprecationWarning message
Mark Sch 7 years ago
parent
commit
35fe0e59c9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Database/Schema/TableSchema.php

+ 1 - 1
src/Database/Schema/TableSchema.php

@@ -780,7 +780,7 @@ class TableSchema implements TableSchemaInterface, SqlGeneratorInterface
     {
         deprecationWarning(
             'TableSchema::temporary() is deprecated. ' .
-            'Use TableSchema::setTemporary()/getTemporary() instead.'
+            'Use TableSchema::setTemporary()/isTemporary() instead.'
         );
         if ($temporary !== null) {
             return $this->setTemporary($temporary);