build: replace VKCOM import with laytan import

This commit is contained in:
Laytan Laats
2023-03-31 16:50:08 +02:00
parent 92d341cbb5
commit 68ac672368
62 changed files with 201 additions and 200 deletions

View File

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

View File

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