Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php namespace Crunch\Salesforce\TokenStore; |
||
34 | public function __construct(AccessTokenGenerator $accessTokenGenerator, LocalFileConfigInterface $config) |
||
35 | { |
||
36 | $this->accessTokenGenerator = $accessTokenGenerator; |
||
37 | $this->filePath = $config->getFilePath(); |
||
38 | $this->config = $config; |
||
39 | } |
||
40 | |||
64 |