* Support php 5.3 for sql parser lib.
This commit is contained in:
+1
-3
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PhpMyAdmin\SqlParser\Tests\Components;
|
||||
|
||||
use PhpMyAdmin\SqlParser\Components\RenameOperation;
|
||||
@@ -10,7 +8,7 @@ use PhpMyAdmin\SqlParser\Tests\TestCase;
|
||||
|
||||
class RenameOperationTest extends TestCase
|
||||
{
|
||||
public function testBuild(): void
|
||||
public function testBuild()
|
||||
{
|
||||
$component = RenameOperation::parse(new Parser(), $this->getTokensList('a TO b, c TO d'));
|
||||
$this->assertEquals(RenameOperation::build($component), 'a TO b, c TO d');
|
||||
|
||||
Reference in New Issue
Block a user