@@ -96,7 +96,7 @@ |
||
96 | 96 | } |
97 | 97 | |
98 | 98 | /** |
99 | - * @param \Generated\Shared\Transfer\CmsPageTransfer $cmsPageTransfer |
|
99 | + * @param CmsPageTransfer|null $cmsPageTransfer |
|
100 | 100 | * |
101 | 101 | * @return \Generated\Shared\Transfer\ButtonTransfer[] |
102 | 102 | */ |
@@ -69,7 +69,7 @@ |
||
69 | 69 | } |
70 | 70 | |
71 | 71 | /** |
72 | - * @param array $configPaths |
|
72 | + * @param string[] $configPaths |
|
73 | 73 | * |
74 | 74 | * @return array |
75 | 75 | */ |
@@ -97,7 +97,7 @@ |
||
97 | 97 | /** |
98 | 98 | * @param \Spryker\Zed\Kernel\Container $container |
99 | 99 | * |
100 | - * @return \Silex\ServiceProviderInterface[] |
|
100 | + * @return PropelServiceProvider[] |
|
101 | 101 | */ |
102 | 102 | protected function getServiceProviders(Container $container) |
103 | 103 | { |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | */ |
40 | 40 | protected function addCommands(Container $container) |
41 | 41 | { |
42 | - $container[self::COMMANDS] = function (Container $container) { |
|
42 | + $container[self::COMMANDS] = function(Container $container) { |
|
43 | 43 | return $this->getConsoleCommands($container); |
44 | 44 | }; |
45 | 45 | |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | */ |
64 | 64 | protected function addEventSubscriber(Container $container) |
65 | 65 | { |
66 | - $container[static::EVENT_SUBSCRIBER] = function (Container $container) { |
|
66 | + $container[static::EVENT_SUBSCRIBER] = function(Container $container) { |
|
67 | 67 | return $this->getEventSubscriber($container); |
68 | 68 | }; |
69 | 69 | |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | */ |
88 | 88 | protected function addServiceProviders(Container $container) |
89 | 89 | { |
90 | - $container[static::SERVICE_PROVIDERS] = function (Container $container) { |
|
90 | + $container[static::SERVICE_PROVIDERS] = function(Container $container) { |
|
91 | 91 | return $this->getServiceProviders($container); |
92 | 92 | }; |
93 | 93 |
@@ -51,7 +51,7 @@ |
||
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
54 | - * @return \Spryker\Zed\Mail\Business\MailFacadeInterface|object |
|
54 | + * @return MailFacadeInterface |
|
55 | 55 | */ |
56 | 56 | private function getMailFacadeMock() |
57 | 57 | { |
@@ -498,7 +498,7 @@ |
||
498 | 498 | * @param \Spryker\Shared\Kernel\Transfer\TransferInterface|null $transfer |
499 | 499 | * @param bool $hasEmail |
500 | 500 | * |
501 | - * @return \PHPUnit_Framework_MockObject_MockObject|\Spryker\Zed\Customer\Business\CustomerBusinessFactory |
|
501 | + * @return \Spryker\Zed\Kernel\Business\AbstractBusinessFactory |
|
502 | 502 | */ |
503 | 503 | protected function getFactory(TransferInterface $transfer = null, $hasEmail = true) |
504 | 504 | { |
@@ -8,7 +8,6 @@ |
||
8 | 8 | namespace SprykerTest\Zed\Customer\Communication\Controller; |
9 | 9 | |
10 | 10 | use Codeception\Util\Stub; |
11 | - |
|
12 | 11 | use Generated\Shared\DataBuilder\CustomerBuilder; |
13 | 12 | use Spryker\Zed\Customer\CustomerDependencyProvider; |
14 | 13 | use Spryker\Zed\Customer\Dependency\Facade\CustomerToMailInterface; |
@@ -39,7 +39,6 @@ |
||
39 | 39 | * @api |
40 | 40 | * |
41 | 41 | * @param int $idCustomer |
42 | - * @param \Generated\Shared\Transfer\ApiFilterTransfer $apiFilterTransfer |
|
43 | 42 | * |
44 | 43 | * @return \Generated\Shared\Transfer\ApiItemTransfer $customerTransfer |
45 | 44 | */ |
@@ -46,7 +46,7 @@ |
||
46 | 46 | |
47 | 47 | /** |
48 | 48 | * @param \Spryker\Zed\CustomerGroup\Persistence\CustomerGroupQueryContainerInterface $customerGroupQueryContainer |
49 | - * @param \Symfony\Component\Form\FormTypeInterface $customerAssignmentForm |
|
49 | + * @param CustomerAssignmentForm $customerAssignmentForm |
|
50 | 50 | * @param int|null $idCustomerGroup |
51 | 51 | */ |
52 | 52 | public function __construct( |
@@ -154,7 +154,7 @@ |
||
154 | 154 | |
155 | 155 | $constraints[] = new Callback([ |
156 | 156 | 'methods' => [ |
157 | - function ($name, ExecutionContextInterface $context) use ($customerGroupQuery) { |
|
157 | + function($name, ExecutionContextInterface $context) use ($customerGroupQuery) { |
|
158 | 158 | if ($customerGroupQuery->findByName($name)->count() > 0) { |
159 | 159 | $context->addViolation('Name is already used'); |
160 | 160 | } |
@@ -166,7 +166,7 @@ |
||
166 | 166 | } |
167 | 167 | |
168 | 168 | /** |
169 | - * @param \Orm\Zed\Customer\Persistence\SpyCustomer[]|\Propel\Runtime\Collection\ObjectCollection $customerEntities |
|
169 | + * @param SpyCustomer[] $customerEntities |
|
170 | 170 | * |
171 | 171 | * @return array |
172 | 172 | */ |