Skip to content

Commit c83a62a

Browse files
fix(manager): wrong method visibility
fix #50
1 parent d251fcd commit c83a62a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ThemesManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ public function url(string $asset, bool $absolute = true): ?string
187187
* If no vendor provided and name not prefixed by vendor
188188
* the first theme with given name is returned.
189189
*/
190-
protected function findByName(string $name, string $vendor = null): ?Theme
190+
public function findByName(string $name, string $vendor = null): ?Theme
191191
{
192192
// normalize theme name
193193
$name = str_replace(['-theme', 'theme-'], '', $name);

0 commit comments

Comments
 (0)