diff options
Diffstat (limited to 'src/Statements/MaintenanceStatement.php')
-rw-r--r-- | src/Statements/MaintenanceStatement.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Statements/MaintenanceStatement.php b/src/Statements/MaintenanceStatement.php index ac3b8c9..273188f 100644 --- a/src/Statements/MaintenanceStatement.php +++ b/src/Statements/MaintenanceStatement.php @@ -1,8 +1,8 @@ <?php - /** * Maintenance statement. */ +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Statements; @@ -18,10 +18,6 @@ use PhpMyAdmin\SqlParser\TokensList; * * They follow the syntax: * STMT [some options] tbl_name [, tbl_name] ... [some more options] - * - * @category Statements - * - * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+ */ class MaintenanceStatement extends Statement { |