File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 11
11
12
12
namespace GrahamCampbell \Parse ;
13
13
14
- use Illuminate \Contracts \Foundation \Application ;
15
14
use Illuminate \Foundation \Application as LaravelApplication ;
16
15
use Illuminate \Support \ServiceProvider ;
17
16
use Laravel \Lumen \Application as LumenApplication ;
@@ -33,7 +32,7 @@ public function boot()
33
32
{
34
33
$ this ->setupConfig ();
35
34
36
- $ this ->setupParse ($ this -> app );
35
+ $ this ->setupParse ();
37
36
}
38
37
39
38
/**
@@ -57,13 +56,11 @@ protected function setupConfig()
57
56
/**
58
57
* Setup parse.
59
58
*
60
- * @param \Illuminate\Contracts\Foundation\Application $app
61
- *
62
59
* @return void
63
60
*/
64
- protected function setupParse (Application $ app )
61
+ protected function setupParse ()
65
62
{
66
- $ config = $ app ->config ->get ('parse ' );
63
+ $ config = $ this -> app ->config ->get ('parse ' );
67
64
68
65
ParseClient::initialize ($ config ['app_id ' ], $ config ['rest_key ' ], $ config ['master_key ' ]);
69
66
}
You can’t perform that action at this time.
0 commit comments