@@ -235,6 +235,9 @@ |
||
| 235 | 235 | ]); |
| 236 | 236 | } |
| 237 | 237 | |
| 238 | + /** |
|
| 239 | + * @param null|string $token |
|
| 240 | + */ |
|
| 238 | 241 | private function generateOrGetApiKey(UserInterface $user, $token) |
| 239 | 242 | { |
| 240 | 243 | $apiKey = null; |
@@ -93,6 +93,9 @@ |
||
| 93 | 93 | return new SingleResourceResponse($list); |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | + /** |
|
| 97 | + * @param string $id |
|
| 98 | + */ |
|
| 96 | 99 | private function findArticleOr404($id) |
| 97 | 100 | { |
| 98 | 101 | if (null === $article = $this->get('swp.repository.article')->findOneById($id)) { |
@@ -18,7 +18,6 @@ |
||
| 18 | 18 | use Nelmio\ApiDocBundle\Annotation\Model; |
| 19 | 19 | use SWP\Bundle\CoreBundle\Form\Type\ThemeInstallType; |
| 20 | 20 | use SWP\Bundle\CoreBundle\Form\Type\ThemeUploadType; |
| 21 | -use SWP\Bundle\CoreBundle\Model\Tenant; |
|
| 22 | 21 | use SWP\Bundle\CoreBundle\Model\TenantInterface; |
| 23 | 22 | use SWP\Bundle\CoreBundle\Theme\Helper\ThemeHelper; |
| 24 | 23 | use SWP\Component\Common\Response\ResourcesListResponseInterface; |
@@ -84,7 +84,7 @@ |
||
| 84 | 84 | $tenantCode = $tenant->getCode(); |
| 85 | 85 | $themes = array_filter( |
| 86 | 86 | $this->get('sylius.repository.theme')->findAll(), |
| 87 | - static function ($element) use (&$tenantCode) { |
|
| 87 | + static function($element) use (&$tenantCode) { |
|
| 88 | 88 | if (strpos($element->getName(), ThemeHelper::SUFFIX_SEPARATOR.$tenantCode)) { |
| 89 | 89 | return true; |
| 90 | 90 | } |
@@ -143,7 +143,7 @@ |
||
| 143 | 143 | |
| 144 | 144 | $ids = array_column($rules['tenants'], 'tenant'); |
| 145 | 145 | $ids = array_unique($ids); |
| 146 | - $tenants = array_filter($rules['tenants'], static function ($key, $value) use ($ids) { |
|
| 146 | + $tenants = array_filter($rules['tenants'], static function($key, $value) use ($ids) { |
|
| 147 | 147 | return array_key_exists($value, $ids); |
| 148 | 148 | }, ARRAY_FILTER_USE_BOTH); |
| 149 | 149 | |