You shell not pass

July 30, 2019 @WAT

She sells seashells on the seashore

const PROJECT_NAME = "name-of-the-project";
public function getPath()
{
    $path = shell_exec('find / -name '.self::PROJECT_NAME);
    $path = str_replace(PHP_EOL, '', $path);
    return $path;
}