all: renamed github.com/z7zmey/php-parser with github.com/VKCOM/php-parser

This commit is contained in:
Makhnev Petr
2021-07-30 21:01:34 +03:00
committed by GitHub
parent 049ce7ddc6
commit 72cd222aeb
63 changed files with 236 additions and 236 deletions

View File

@@ -3,8 +3,8 @@ package formatter
import (
"bytes"
"github.com/z7zmey/php-parser/pkg/ast"
"github.com/z7zmey/php-parser/pkg/token"
"github.com/VKCOM/php-parser/pkg/ast"
"github.com/VKCOM/php-parser/pkg/token"
)
type formatterState int

View File

@@ -2,12 +2,12 @@ package formatter_test
import (
"bytes"
"github.com/z7zmey/php-parser/pkg/token"
"github.com/z7zmey/php-parser/pkg/visitor/formatter"
"github.com/z7zmey/php-parser/pkg/visitor/printer"
"github.com/VKCOM/php-parser/pkg/token"
"github.com/VKCOM/php-parser/pkg/visitor/formatter"
"github.com/VKCOM/php-parser/pkg/visitor/printer"
"testing"
"github.com/z7zmey/php-parser/pkg/ast"
"github.com/VKCOM/php-parser/pkg/ast"
)
func TestFormatter_Root(t *testing.T) {