You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in your Base.php file, you use a hardcoded path, which is also linux specific. on windows your task would fail, except i provide the path to the executable.
i would reccomend using the symfony ExecutableFinder of the symfony/process component, which avoids hardcoded path and also is cross platform compatible.
an example usage is the PhpExecutableFinder which is performance optimized. the real ExecutableFinder is called at Line 70
The text was updated successfully, but these errors were encountered:
in your
Base.php
file, you use a hardcoded path, which is also linux specific. on windows your task would fail, except i provide the path to the executable.i would reccomend using the symfony
ExecutableFinder
of thesymfony/process
component, which avoids hardcoded path and also is cross platform compatible.an example usage is the
PhpExecutableFinder
which is performance optimized. the realExecutableFinder
is called at Line 70The text was updated successfully, but these errors were encountered: