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

@@ -5,8 +5,8 @@ import (
"errors"
"strings"
"github.com/VKCOM/php-parser/pkg/ast"
"github.com/VKCOM/php-parser/pkg/visitor"
"github.com/laytan/php-parser/pkg/ast"
"github.com/laytan/php-parser/pkg/visitor"
)
// NamespaceResolver visitor

View File

@@ -1,13 +1,13 @@
package nsresolver_test
import (
"github.com/VKCOM/php-parser/pkg/visitor/nsresolver"
"github.com/VKCOM/php-parser/pkg/visitor/traverser"
"github.com/laytan/php-parser/pkg/visitor/nsresolver"
"github.com/laytan/php-parser/pkg/visitor/traverser"
"testing"
"gotest.tools/assert"
"github.com/VKCOM/php-parser/pkg/ast"
"github.com/laytan/php-parser/pkg/ast"
)
func TestResolveStaticCall(t *testing.T) {