Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | public function __construct(Config $config) |
||
35 | { |
||
36 | $this->config = $config; |
||
37 | |||
38 | $this->fb = new Facebook([ |
||
39 | 'app_id' => $this->config->getParameter('fb_app_id'), |
||
40 | 'app_secret' => $this->config->getParameter('fb_app_secret'), |
||
41 | 'default_graph_version' => $this->config->getParameter('default_graph_version'), |
||
42 | ]); |
||
92 |