Skip to content
This repository was archived by the owner on Aug 21, 2026. It is now read-only.

Commit a1f9c22

Browse files
committed
fix issue
1 parent 6ab853f commit a1f9c22

11 files changed

Lines changed: 13 additions & 13 deletions

.php-cs-fixer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
55
*
6-
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
6+
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

composer-dependency-analyser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
55
*
6-
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
6+
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

rector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
55
*
6-
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
6+
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/ConfigProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
55
*
6-
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
6+
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Module.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
55
*
6-
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
6+
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/View/Helper/ViteUrl.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
55
*
6-
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
6+
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -21,7 +21,7 @@
2121
use function file_get_contents;
2222
use function is_file;
2323
use function json_decode;
24-
use function ltrim;
24+
use function mb_ltrim;
2525
use function sprintf;
2626

2727
use const JSON_THROW_ON_ERROR;
@@ -75,7 +75,7 @@ public function file(string $name): string
7575
}
7676

7777
if ($this->viteHost) {
78-
return $this->viteHost . '/' . ltrim($name, '/');
78+
return $this->viteHost . '/' . mb_ltrim($name, '/');
7979
}
8080

8181
$view = $this->getView();

src/View/Helper/ViteUrlFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
55
*
6-
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
6+
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

tests/ConfigProviderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
55
*
6-
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
6+
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

tests/ModuleTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
55
*
6-
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
6+
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

tests/View/Helper/ViteUrlFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This file is part of the mimmi20/laminasviewrenderer-vite-url package.
55
*
6-
* Copyright (c) 2023-2025, Thomas Mueller <mimmi20@live.de>
6+
* Copyright (c) 2023-2026, Thomas Mueller <mimmi20@live.de>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

0 commit comments

Comments
 (0)