| Total Complexity | 6 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 10 | class ShopifyAdminUserProvider implements UserProviderInterface |
||
| 11 | { |
||
| 12 | const ROLE_SHOPIFY_ADMIN = 'ROLE_SHOPIFY_ADMIN'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var ShopifyStoreManagerInterface |
||
| 16 | */ |
||
| 17 | private $storeManager; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | private $devStore; |
||
| 23 | |||
| 24 | public function __construct(ShopifyStoreManagerInterface $storeManager) |
||
| 25 | { |
||
| 26 | $this->storeManager = $storeManager; |
||
| 27 | } |
||
| 28 | |||
| 29 | public function setDevStore(string $devStore) |
||
| 30 | { |
||
| 31 | $this->devStore = $devStore; |
||
| 32 | } |
||
| 33 | |||
| 34 | public function loadUserByUsername($sessionId) |
||
| 43 | } |
||
| 44 | |||
| 45 | public function refreshUser(UserInterface $user) |
||
| 48 | } |
||
| 49 | |||
| 50 | public function supportsClass($class) |
||
| 55 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths