Skip to content

Commit 459d623

Browse files
committed
For real fix the dictionary loading (for composer installs)
1 parent 3d2b98e commit 459d623

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/BoggleSolver.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,11 @@ class BoggleSolver
2424

2525
public function __construct()
2626
{
27-
static::$dictFile = __DIR__ . static::$dictFile;
2827
}
2928

3029
public function getWords()
3130
{
32-
return explode("\r\n", file_get_contents(static::$dictFile));
31+
return explode("\r\n", file_get_contents(__DIR__ . static::$dictFile));
3332
}
3433

3534
public function loadDict()

0 commit comments

Comments
 (0)