| @@ -46,6 +46,9 @@ discard block | ||
| 46 | 46 | $manager->flush(); | 
| 47 | 47 | } | 
| 48 | 48 | |
| 49 | + /** | |
| 50 | + * @param string $env | |
| 51 | + */ | |
| 49 | 52 | public function loadRoutes($env, ObjectManager $manager) | 
| 50 | 53 |      { | 
| 51 | 54 | $routes = [ | 
| @@ -95,6 +98,10 @@ discard block | ||
| 95 | 98 | $manager->flush(); | 
| 96 | 99 | } | 
| 97 | 100 | |
| 101 | + /** | |
| 102 | + * @param string $env | |
| 103 | + * @param ObjectManager $manager | |
| 104 | + */ | |
| 98 | 105 | public function setRoutesContent($env, $manager) | 
| 99 | 106 |      { | 
| 100 | 107 | $routes = [ | 
| @@ -118,6 +125,10 @@ discard block | ||
| 118 | 125 | } | 
| 119 | 126 | } | 
| 120 | 127 | |
| 128 | + /** | |
| 129 | + * @param string $env | |
| 130 | + * @param ObjectManager $manager | |
| 131 | + */ | |
| 121 | 132 | public function loadArticles($env, $manager) | 
| 122 | 133 |      { | 
| 123 | 134 | $articles = [ | 
| @@ -61,7 +61,7 @@ | ||
| 61 | 61 | } | 
| 62 | 62 | |
| 63 | 63 | /** | 
| 64 | - * @param $filePath | |
| 64 | + * @param string $filePath | |
| 65 | 65 | * | 
| 66 | 66 | * @return Response | 
| 67 | 67 | */ | 
| @@ -295,7 +295,7 @@ discard block | ||
| 295 | 295 | } | 
| 296 | 296 | |
| 297 | 297 | /** | 
| 298 | - * @param array $keys | |
| 298 | + * @param string[] $keys | |
| 299 | 299 | * | 
| 300 | 300 | * @return string | 
| 301 | 301 | */ | 
| @@ -327,7 +327,7 @@ discard block | ||
| 327 | 327 | /** | 
| 328 | 328 | * @param string $id | 
| 329 | 329 | * | 
| 330 | - * @return null|true | |
| 330 | + * @return null|boolean | |
| 331 | 331 | */ | 
| 332 | 332 | public function restoreTemporaryUnset($id) | 
| 333 | 333 |      { | 
| @@ -38,7 +38,7 @@ | ||
| 38 | 38 | * @param UserInterface $user | 
| 39 | 39 | * @param string|null $apiKeyValue | 
| 40 | 40 | * | 
| 41 | - * @return mixed | |
| 41 | + * @return ApiKeyInterface | |
| 42 | 42 | */ | 
| 43 | 43 | public function create($user, $apiKeyValue = null) | 
| 44 | 44 |      { | 
| @@ -77,7 +77,7 @@ | ||
| 77 | 77 | /** | 
| 78 | 78 | * @param array $containerData | 
| 79 | 79 | * | 
| 80 | - * @return mixed | |
| 80 | + * @return null|\SWP\Component\TemplatesSystem\Gimme\Model\ContainerInterface | |
| 81 | 81 | * | 
| 82 | 82 | * @throws \Exception | 
| 83 | 83 | */ | 
| @@ -21,6 +21,7 @@ discard block | ||
| 21 | 21 |  { | 
| 22 | 22 | /** | 
| 23 | 23 | * @param string $name | 
| 24 | + * @return void | |
| 24 | 25 | */ | 
| 25 | 26 | public function setName($name); | 
| 26 | 27 | |
| @@ -61,6 +62,7 @@ discard block | ||
| 61 | 62 | |
| 62 | 63 | /** | 
| 63 | 64 | * @param array $settings | 
| 65 | + * @return void | |
| 64 | 66 | */ | 
| 65 | 67 | public function setSettings(array $settings): void; | 
| 66 | 68 | |
| @@ -71,6 +73,7 @@ discard block | ||
| 71 | 73 | |
| 72 | 74 | /** | 
| 73 | 75 | * @param \SplFileInfo|null $file | 
| 76 | + * @return void | |
| 74 | 77 | */ | 
| 75 | 78 | public function setLogo(?\SplFileInfo $file): void; | 
| 76 | 79 | |
| @@ -86,6 +89,7 @@ discard block | ||
| 86 | 89 | |
| 87 | 90 | /** | 
| 88 | 91 | * @param string|null $path | 
| 92 | + * @return void | |
| 89 | 93 | */ | 
| 90 | 94 | public function setLogoPath(?string $path): void; | 
| 91 | 95 | } | 
| @@ -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; | 
| @@ -129,7 +129,6 @@ | ||
| 129 | 129 | |
| 130 | 130 | /** | 
| 131 | 131 | * @param string $name | 
| 132 | - * @param bool $disabled | |
| 133 | 132 | * | 
| 134 | 133 | * @return OrganizationInterface | 
| 135 | 134 | */ | 
| @@ -76,7 +76,7 @@ | ||
| 76 | 76 | * @param TenantContextInterface $tenantContext | 
| 77 | 77 | * @param ReloadableThemeRepositoryInterface $themeRepository | 
| 78 | 78 | * @param TenantAwareThemeContextInterface $themeContext | 
| 79 | - * @param TenantRepositoryInterface $tenantRepositorys | |
| 79 | + * @param TenantRepositoryInterface $tenantRepository | |
| 80 | 80 | */ | 
| 81 | 81 | public function __construct( | 
| 82 | 82 | ThemeInstallerInterface $themeInstaller, |