@@ -60,7 +60,7 @@ |
||
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | /** |
| 63 | - * @param string|object $entityOrClass |
|
| 63 | + * @param string $entityOrClass |
|
| 64 | 64 | * @param string|null $type |
| 65 | 65 | * @return array |
| 66 | 66 | */ |
@@ -4,7 +4,6 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Symfony\Component\Validator\Constraint; |
| 6 | 6 | use Symfony\Component\Validator\ConstraintValidator; |
| 7 | - |
|
| 8 | 7 | use OroCRM\Bundle\TaskBundle\Validator\Constraints\DueDateRequired; |
| 9 | 8 | use OroCRM\Bundle\TaskBundle\Entity\Task; |
| 10 | 9 | |
@@ -136,6 +136,10 @@ |
||
| 136 | 136 | $this->assertInstanceOf('\DateTime', $this->entity->getUpdatedAt()); |
| 137 | 137 | } |
| 138 | 138 | |
| 139 | + /** |
|
| 140 | + * @param string $entityClass |
|
| 141 | + * @param string $entityShortName |
|
| 142 | + */ |
|
| 139 | 143 | protected function assertCollectionMethods($entityClass, $entityShortName) |
| 140 | 144 | { |
| 141 | 145 | $addMethodName = 'add' . $entityShortName; |
@@ -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; |
@@ -179,8 +179,8 @@ |
||
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | /** |
| 182 | - * @param $dataType |
|
| 183 | - * @param $lessIsBetter |
|
| 182 | + * @param string $dataType |
|
| 183 | + * @param boolean $lessIsBetter |
|
| 184 | 184 | * @param $pastResult |
| 185 | 185 | * @param $deviation |
| 186 | 186 | * @param $result |
@@ -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 |
@@ -181,7 +181,7 @@ |
||
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | /** |
| 184 | - * @return Channel |
|
| 184 | + * @return LoadSalesBundleFixtures |
|
| 185 | 185 | */ |
| 186 | 186 | protected function createChannel() |
| 187 | 187 | { |
@@ -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 | |
@@ -294,8 +294,8 @@ discard block |
||
| 294 | 294 | /** |
| 295 | 295 | * Persist object |
| 296 | 296 | * |
| 297 | - * @param mixed $manager |
|
| 298 | - * @param mixed $object |
|
| 297 | + * @param Account $manager |
|
| 298 | + * @param Account $object |
|
| 299 | 299 | */ |
| 300 | 300 | private function persist($manager, $object) |
| 301 | 301 | { |
@@ -305,7 +305,7 @@ discard block |
||
| 305 | 305 | /** |
| 306 | 306 | * Flush objects |
| 307 | 307 | * |
| 308 | - * @param mixed $manager |
|
| 308 | + * @param Account $manager |
|
| 309 | 309 | */ |
| 310 | 310 | private function flush($manager) |
| 311 | 311 | { |
@@ -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 | |
@@ -260,7 +260,7 @@ |
||
| 260 | 260 | /** |
| 261 | 261 | * Persist object |
| 262 | 262 | * |
| 263 | - * @param mixed $object |
|
| 263 | + * @param User $object |
|
| 264 | 264 | * @return void |
| 265 | 265 | */ |
| 266 | 266 | private function persist($object) |
@@ -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 | |
@@ -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 |
@@ -4,7 +4,6 @@ discard block |
||
| 4 | 4 | |
| 5 | 5 | use Doctrine\DBAL\Types\Type; |
| 6 | 6 | use Doctrine\DBAL\Schema\Schema; |
| 7 | - |
|
| 8 | 7 | use Oro\Bundle\MigrationBundle\Migration\QueryBag; |
| 9 | 8 | use Oro\Bundle\MigrationBundle\Migration\Migration; |
| 10 | 9 | use Oro\Bundle\MigrationBundle\Migration\SqlMigrationQuery; |
@@ -12,15 +11,11 @@ discard block |
||
| 12 | 11 | use Oro\Bundle\MigrationBundle\Migration\OrderedMigrationInterface; |
| 13 | 12 | use Oro\Bundle\MigrationBundle\Migration\Extension\NameGeneratorAwareInterface; |
| 14 | 13 | use Oro\Bundle\MigrationBundle\Tools\DbIdentifierNameGenerator; |
| 15 | - |
|
| 16 | 14 | use Oro\Bundle\ActivityListBundle\Migration\Extension\ActivityListExtension; |
| 17 | - |
|
| 18 | 15 | use Oro\Bundle\EntityExtendBundle\Tools\ExtendHelper; |
| 19 | 16 | use Oro\Bundle\EntityExtendBundle\Tools\ExtendDbIdentifierNameGenerator; |
| 20 | - |
|
| 21 | 17 | use Oro\Bundle\EntityExtendBundle\Migration\Extension\ExtendExtension; |
| 22 | 18 | use Oro\Bundle\EntityExtendBundle\Migration\Extension\ExtendExtensionAwareInterface; |
| 23 | - |
|
| 24 | 19 | use Oro\Bundle\ActivityBundle\EntityConfig\ActivityScope; |
| 25 | 20 | use Oro\Bundle\ActivityListBundle\Tools\ActivityListEntityConfigDumperExtension; |
| 26 | 21 | |