@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | |
| 101 | 101 | /** |
| 102 | 102 | * @param EntityManager $manager |
| 103 | - * @param mixed $object |
|
| 103 | + * @param BusinessUnit $object |
|
| 104 | 104 | */ |
| 105 | 105 | private function persistAndFlush($manager, $object) |
| 106 | 106 | { |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | |
| 111 | 111 | /** |
| 112 | 112 | * @param EntityManager $manager |
| 113 | - * @param mixed $object |
|
| 113 | + * @param BusinessUnit $object |
|
| 114 | 114 | */ |
| 115 | 115 | private function persist($manager, $object) |
| 116 | 116 | { |
@@ -3,10 +3,8 @@ |
||
| 3 | 3 | namespace OroCRM\Bundle\TestFrameworkBundle\Tests\Performance; |
| 4 | 4 | |
| 5 | 5 | use Symfony\Bundle\FrameworkBundle\Console\Application; |
| 6 | - |
|
| 7 | 6 | use Symfony\Component\HttpKernel\Kernel; |
| 8 | 7 | use Symfony\Component\DependencyInjection\Container; |
| 9 | - |
|
| 10 | 8 | use Oro\Bundle\TestFrameworkBundle\Test\WebTestCase; |
| 11 | 9 | |
| 12 | 10 | class LoadTest extends WebTestCase |
@@ -146,7 +146,7 @@ |
||
| 146 | 146 | * @param string $startDate |
| 147 | 147 | * @param string $endDate |
| 148 | 148 | * |
| 149 | - * @return bool|string |
|
| 149 | + * @return string |
|
| 150 | 150 | */ |
| 151 | 151 | protected function randomDate($startDate, $endDate) |
| 152 | 152 | { |
@@ -4,15 +4,12 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Doctrine\Common\Collections\ArrayCollection; |
| 6 | 6 | use Doctrine\ORM\EntityRepository; |
| 7 | - |
|
| 8 | 7 | use Doctrine\Common\DataFixtures\AbstractFixture; |
| 9 | 8 | use Doctrine\Common\Persistence\ObjectManager; |
| 10 | - |
|
| 11 | 9 | use Oro\Bundle\OrganizationBundle\Entity\BusinessUnit; |
| 12 | 10 | use Oro\Bundle\OrganizationBundle\Entity\Organization; |
| 13 | 11 | use Symfony\Component\DependencyInjection\ContainerInterface; |
| 14 | 12 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
| 15 | - |
|
| 16 | 13 | use Oro\Bundle\UserBundle\Entity\UserManager; |
| 17 | 14 | use Oro\Bundle\UserBundle\Entity\User; |
| 18 | 15 | |
@@ -233,8 +233,8 @@ discard block |
||
| 233 | 233 | /** |
| 234 | 234 | * Persist object |
| 235 | 235 | * |
| 236 | - * @param mixed $manager |
|
| 237 | - * @param mixed $object |
|
| 236 | + * @param EntityManager $manager |
|
| 237 | + * @param Lead $object |
|
| 238 | 238 | */ |
| 239 | 239 | private function persist($manager, $object) |
| 240 | 240 | { |
@@ -244,7 +244,7 @@ discard block |
||
| 244 | 244 | /** |
| 245 | 245 | * Flush objects |
| 246 | 246 | * |
| 247 | - * @param mixed $manager |
|
| 247 | + * @param EntityManager $manager |
|
| 248 | 248 | */ |
| 249 | 249 | private function flush($manager) |
| 250 | 250 | { |
@@ -5,26 +5,20 @@ |
||
| 5 | 5 | use Oro\Bundle\OrganizationBundle\Entity\Organization; |
| 6 | 6 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
| 7 | 7 | use Symfony\Component\DependencyInjection\ContainerInterface; |
| 8 | - |
|
| 9 | 8 | use Doctrine\Common\Collections\Collection; |
| 10 | 9 | use Doctrine\Common\DataFixtures\AbstractFixture; |
| 11 | 10 | use Doctrine\Common\Persistence\ObjectManager; |
| 12 | - |
|
| 13 | 11 | use Doctrine\ORM\EntityManager; |
| 14 | 12 | use Doctrine\ORM\EntityRepository; |
| 15 | - |
|
| 16 | 13 | use OroCRM\Bundle\AccountBundle\Entity\Account; |
| 17 | 14 | use OroCRM\Bundle\ContactBundle\Entity\Contact; |
| 18 | - |
|
| 19 | 15 | use Oro\Bundle\AddressBundle\Entity\Country; |
| 20 | 16 | use Oro\Bundle\AddressBundle\Entity\Region; |
| 21 | - |
|
| 22 | 17 | use OroCRM\Bundle\ContactBundle\Entity\ContactAddress; |
| 23 | 18 | use OroCRM\Bundle\ContactBundle\Entity\ContactEmail; |
| 24 | 19 | use OroCRM\Bundle\ContactBundle\Entity\ContactPhone; |
| 25 | 20 | use OroCRM\Bundle\ContactBundle\Entity\Group; |
| 26 | 21 | use OroCRM\Bundle\ContactBundle\Entity\Source; |
| 27 | - |
|
| 28 | 22 | use Oro\Bundle\UserBundle\Entity\User; |
| 29 | 23 | use Oro\Bundle\UserBundle\Entity\UserManager; |
| 30 | 24 | |
@@ -242,7 +242,7 @@ |
||
| 242 | 242 | * @param Cart $cart |
| 243 | 243 | * @param string $paymentMethod |
| 244 | 244 | * @param string $paymentMethodDetails |
| 245 | - * @param mixed $origin |
|
| 245 | + * @param integer $origin |
|
| 246 | 246 | * |
| 247 | 247 | * @return Order |
| 248 | 248 | */ |
@@ -4,15 +4,12 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Doctrine\Common\Collections\ArrayCollection; |
| 6 | 6 | use Doctrine\ORM\EntityRepository; |
| 7 | - |
|
| 8 | 7 | use Doctrine\Common\DataFixtures\AbstractFixture; |
| 9 | 8 | use Doctrine\Common\Persistence\ObjectManager; |
| 10 | - |
|
| 11 | 9 | use Oro\Bundle\OrganizationBundle\Entity\BusinessUnit; |
| 12 | 10 | use Oro\Bundle\OrganizationBundle\Entity\Organization; |
| 13 | 11 | use Symfony\Component\DependencyInjection\ContainerInterface; |
| 14 | 12 | use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
| 15 | - |
|
| 16 | 13 | use Oro\Bundle\UserBundle\Entity\UserManager; |
| 17 | 14 | use Oro\Bundle\UserBundle\Entity\User; |
| 18 | 15 | |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | /** |
| 146 | 146 | * Persist object |
| 147 | 147 | * |
| 148 | - * @param mixed $manager |
|
| 148 | + * @param EntityManager $manager |
|
| 149 | 149 | * @param mixed $object |
| 150 | 150 | */ |
| 151 | 151 | private function persist($manager, $object) |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | /** |
| 157 | 157 | * Flush objects |
| 158 | 158 | * |
| 159 | - * @param mixed $manager |
|
| 159 | + * @param EntityManager $manager |
|
| 160 | 160 | */ |
| 161 | 161 | private function flush($manager) |
| 162 | 162 | { |
@@ -3,10 +3,8 @@ |
||
| 3 | 3 | namespace OroCRM\Bundle\TestFrameworkBundle\Tests\Performance; |
| 4 | 4 | |
| 5 | 5 | use Symfony\Bundle\FrameworkBundle\Console\Application; |
| 6 | - |
|
| 7 | 6 | use Symfony\Component\HttpKernel\Kernel; |
| 8 | 7 | use Symfony\Component\DependencyInjection\Container; |
| 9 | - |
|
| 10 | 8 | use Oro\Bundle\TestFrameworkBundle\Test\WebTestCase; |
| 11 | 9 | |
| 12 | 10 | class LoadTest extends WebTestCase |
@@ -91,8 +91,8 @@ discard block |
||
| 91 | 91 | /** |
| 92 | 92 | * Persist object |
| 93 | 93 | * |
| 94 | - * @param mixed $manager |
|
| 95 | - * @param mixed $object |
|
| 94 | + * @param EntityManager $manager |
|
| 95 | + * @param Report $object |
|
| 96 | 96 | */ |
| 97 | 97 | private function persist($manager, $object) |
| 98 | 98 | { |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | /** |
| 103 | 103 | * Flush objects |
| 104 | 104 | * |
| 105 | - * @param mixed $manager |
|
| 105 | + * @param EntityManager $manager |
|
| 106 | 106 | */ |
| 107 | 107 | private function flush($manager) |
| 108 | 108 | { |
@@ -3,10 +3,8 @@ |
||
| 3 | 3 | namespace OroCRM\Bundle\TestFrameworkBundle\Tests\Performance; |
| 4 | 4 | |
| 5 | 5 | use Symfony\Bundle\FrameworkBundle\Console\Application; |
| 6 | - |
|
| 7 | 6 | use Symfony\Component\HttpKernel\Kernel; |
| 8 | 7 | use Symfony\Component\DependencyInjection\Container; |
| 9 | - |
|
| 10 | 8 | use Oro\Bundle\TestFrameworkBundle\Test\WebTestCase; |
| 11 | 9 | |
| 12 | 10 | class LoadTest extends WebTestCase |
@@ -273,7 +273,7 @@ |
||
| 273 | 273 | /** |
| 274 | 274 | * Flush objects |
| 275 | 275 | * |
| 276 | - * @param mixed $manager |
|
| 276 | + * @param EntityManager $manager |
|
| 277 | 277 | */ |
| 278 | 278 | private function flush($manager) |
| 279 | 279 | { |
@@ -4,17 +4,13 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Symfony\Component\Form\FormInterface; |
| 6 | 6 | use Symfony\Component\HttpFoundation\Response; |
| 7 | - |
|
| 8 | 7 | use FOS\RestBundle\Controller\Annotations\NamePrefix; |
| 9 | 8 | use FOS\RestBundle\Controller\Annotations\RouteResource; |
| 10 | 9 | use FOS\RestBundle\Controller\Annotations\QueryParam; |
| 11 | 10 | use FOS\RestBundle\Routing\ClassResourceInterface; |
| 12 | - |
|
| 13 | 11 | use Nelmio\ApiDocBundle\Annotation\ApiDoc; |
| 14 | - |
|
| 15 | 12 | use Oro\Bundle\SecurityBundle\Annotation\Acl; |
| 16 | 13 | use Oro\Bundle\SecurityBundle\Annotation\AclAncestor; |
| 17 | - |
|
| 18 | 14 | use Oro\Bundle\SoapBundle\Form\Handler\ApiFormHandler; |
| 19 | 15 | use Oro\Bundle\SoapBundle\Controller\Api\Rest\RestController; |
| 20 | 16 | use Oro\Bundle\SoapBundle\Entity\Manager\ApiEntityManager; |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | /** |
| 123 | - * @param $tagsNames |
|
| 123 | + * @param string[] $tagsNames |
|
| 124 | 124 | * @return Tag[] |
| 125 | 125 | */ |
| 126 | 126 | protected function createTags($tagsNames) |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | /** |
| 230 | 230 | * Persist object |
| 231 | 231 | * |
| 232 | - * @param mixed $manager |
|
| 232 | + * @param EntityManager $manager |
|
| 233 | 233 | * @param mixed $object |
| 234 | 234 | */ |
| 235 | 235 | private function persist($manager, $object) |
@@ -240,7 +240,7 @@ discard block |
||
| 240 | 240 | /** |
| 241 | 241 | * Flush objects |
| 242 | 242 | * |
| 243 | - * @param mixed $manager |
|
| 243 | + * @param EntityManager $manager |
|
| 244 | 244 | */ |
| 245 | 245 | private function flush($manager) |
| 246 | 246 | { |
@@ -4,17 +4,13 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Symfony\Component\Form\FormInterface; |
| 6 | 6 | use Symfony\Component\HttpFoundation\Response; |
| 7 | - |
|
| 8 | 7 | use FOS\RestBundle\Controller\Annotations\NamePrefix; |
| 9 | 8 | use FOS\RestBundle\Controller\Annotations\RouteResource; |
| 10 | 9 | use FOS\RestBundle\Controller\Annotations\QueryParam; |
| 11 | 10 | use FOS\RestBundle\Routing\ClassResourceInterface; |
| 12 | - |
|
| 13 | 11 | use Nelmio\ApiDocBundle\Annotation\ApiDoc; |
| 14 | - |
|
| 15 | 12 | use Oro\Bundle\SecurityBundle\Annotation\Acl; |
| 16 | 13 | use Oro\Bundle\SecurityBundle\Annotation\AclAncestor; |
| 17 | - |
|
| 18 | 14 | use Oro\Bundle\SoapBundle\Form\Handler\ApiFormHandler; |
| 19 | 15 | use Oro\Bundle\SoapBundle\Controller\Api\Rest\RestController; |
| 20 | 16 | use Oro\Bundle\SoapBundle\Entity\Manager\ApiEntityManager; |
@@ -132,7 +132,7 @@ |
||
| 132 | 132 | |
| 133 | 133 | /** |
| 134 | 134 | * @param ObjectManager $manager |
| 135 | - * @param $name |
|
| 135 | + * @param string $name |
|
| 136 | 136 | * @return BusinessUnit |
| 137 | 137 | */ |
| 138 | 138 | protected function getBusinessUnit(ObjectManager $manager, $name) |
@@ -3,10 +3,8 @@ |
||
| 3 | 3 | namespace OroCRM\Bundle\TestFrameworkBundle\Tests\Performance; |
| 4 | 4 | |
| 5 | 5 | use Symfony\Bundle\FrameworkBundle\Console\Application; |
| 6 | - |
|
| 7 | 6 | use Symfony\Component\HttpKernel\Kernel; |
| 8 | 7 | use Symfony\Component\DependencyInjection\Container; |
| 9 | - |
|
| 10 | 8 | use Oro\Bundle\TestFrameworkBundle\Test\WebTestCase; |
| 11 | 9 | |
| 12 | 10 | class LoadTest extends WebTestCase |