I've picked up a legacy project with a bug in it and my Laravel skills are at noob level. I'm getting the error above and I've managed to trace the error to the following code.
\App::make('pia-distribution', array(base_path() . '/resources/ios/' .
Input::get('environment') . '/' . Input::get('version') . '/app.ipa',
Input::get('environment'), Input::get('version')));
I've done a project search on pia-distributon
and this is the only place it is found. Is there a class that's supposed to exist?
I'm unfamiliar with how App::make
works and could use some help on solving this bug. Thanks