@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | /* |
| 6 | 6 | * This file is part of the Superdesk Web Publisher Settings Bundle. |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | /* |
| 6 | 6 | * This file is part of the Superdesk Web Publisher Content Bundle. |
@@ -164,7 +164,7 @@ |
||
| 164 | 164 | /** |
| 165 | 165 | * @param int $id |
| 166 | 166 | * |
| 167 | - * @return null|object |
|
| 167 | + * @return RouteInterface |
|
| 168 | 168 | */ |
| 169 | 169 | private function findRouteOr404(int $id) |
| 170 | 170 | { |
@@ -85,7 +85,7 @@ |
||
| 85 | 85 | $currentTheme = $tenant->getThemeName(); |
| 86 | 86 | $themes = array_filter( |
| 87 | 87 | $this->get('sylius.repository.theme')->findAll(), |
| 88 | - function ($element) use (&$tenantCode, $currentTheme) { |
|
| 88 | + function($element) use (&$tenantCode, $currentTheme) { |
|
| 89 | 89 | if (strpos($element->getName(), ThemeHelper::SUFFIX_SEPARATOR.$tenantCode)) { |
| 90 | 90 | return true; |
| 91 | 91 | } |
@@ -17,7 +17,6 @@ |
||
| 17 | 17 | use Knp\Component\Pager\Pagination\SlidingPagination; |
| 18 | 18 | use SWP\Bundle\CoreBundle\Form\Type\ThemeInstallType; |
| 19 | 19 | use SWP\Bundle\CoreBundle\Form\Type\ThemeUploadType; |
| 20 | -use SWP\Bundle\CoreBundle\Model\Tenant; |
|
| 21 | 20 | use SWP\Bundle\CoreBundle\Model\TenantInterface; |
| 22 | 21 | use SWP\Bundle\CoreBundle\Theme\Helper\ThemeHelper; |
| 23 | 22 | use SWP\Component\Common\Response\ResponseContext; |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | /* |
| 6 | 6 | * This file is part of the Superdesk Web Publisher Core Bundle. |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | /* |
| 6 | 6 | * This file is part of the Superdesk Web Publisher Core Bundle. |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | /* |
| 6 | 6 | * This file is part of the Superdesk Web Publisher Core Bundle. |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | /* |
| 6 | 6 | * This file is part of the Superdesk Web Publisher Core Bundle. |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | /* |
| 6 | 6 | * This file is part of the Superdesk Web Publisher Settings Bundle. |
@@ -40,10 +40,10 @@ discard block |
||
| 40 | 40 | ; |
| 41 | 41 | |
| 42 | 42 | $builder->get('value')->addModelTransformer(new CallbackTransformer( |
| 43 | - function ($value) { |
|
| 43 | + function($value) { |
|
| 44 | 44 | return $value; |
| 45 | 45 | }, |
| 46 | - function ($value) { |
|
| 46 | + function($value) { |
|
| 47 | 47 | $allowed = ['true', 'false', '1', '0', null]; |
| 48 | 48 | |
| 49 | 49 | if (\is_bool($value) || \in_array($value, $allowed, true)) { |