Skip to content

Commit

Permalink
Fixed wrong marking interface in InsertCommand and ReplaceCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
paranoiq committed May 3, 2023
1 parent dec382c commit e36c0b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions sources/Sql/Dml/Insert/InsertCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

namespace SqlFtw\Sql\Dml\Insert;

use SqlFtw\Sql\Ddl\DdlCommand;
use SqlFtw\Sql\Dml\DmlCommand;

interface InsertCommand extends DdlCommand
interface InsertCommand extends DmlCommand
{

}
4 changes: 2 additions & 2 deletions sources/Sql/Dml/Insert/ReplaceCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

namespace SqlFtw\Sql\Dml\Insert;

use SqlFtw\Sql\Ddl\DdlCommand;
use SqlFtw\Sql\Dml\DmlCommand;

interface ReplaceCommand extends DdlCommand
interface ReplaceCommand extends DmlCommand
{

}

0 comments on commit e36c0b1

Please sign in to comment.