| 1 |  |  | <?php | 
            
                                                                                                            
                            
            
                                    
            
            
                | 2 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 3 |  |  | namespace Kunstmaan\AdminListBundle\Service; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 4 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 5 |  |  | use Doctrine\Common\Persistence\ObjectManager; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 6 |  |  | use FOS\UserBundle\Model\User; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 7 |  |  | use Kunstmaan\AdminBundle\Entity\UserInterface; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 8 |  |  | use Kunstmaan\AdminListBundle\Entity\LockableEntity; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 9 |  |  | use Kunstmaan\AdminListBundle\Entity\EntityVersionLock; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 10 |  |  | use Kunstmaan\AdminListBundle\Entity\LockableEntityInterface; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 11 |  |  | use Kunstmaan\AdminListBundle\Repository\EntityVersionLockRepository; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 12 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 13 |  |  | class EntityVersionLockService | 
            
                                                                                                            
                            
            
                                    
            
            
                | 14 |  |  | { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 15 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 16 |  |  |      * @var ObjectManager | 
            
                                                                                                            
                            
            
                                    
            
            
                | 17 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 18 |  |  |     private $objectManager; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 19 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 20 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 21 |  |  |      * @var int | 
            
                                                                                                            
                            
            
                                    
            
            
                | 22 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 23 |  |  |     private $threshold; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 24 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 25 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 26 |  |  |      * @var bool | 
            
                                                                                                            
                            
            
                                    
            
            
                | 27 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 28 |  |  |     private $lockEnabled; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 29 | 6 |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 30 |  |  |     public function __construct(ObjectManager $em, $threshold, $lockEnabled) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 31 | 6 |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 32 | 6 |  |         $this->setObjectManager($em); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 33 | 6 |  |         $this->setThreshold($threshold); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 34 | 6 |  |         $this->setLockEnabled($lockEnabled); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 35 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 36 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 37 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 38 |  |  |      * @param LockableEntityInterface $entity | 
            
                                                                                                            
                            
            
                                    
            
            
                | 39 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 40 |  |  |      * @return bool | 
            
                                                                                                            
                            
            
                                    
            
            
                | 41 | 3 |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 42 |  |  |     public function isEntityBelowThreshold(LockableEntityInterface $entity) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 43 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 44 | 3 |  |         /** @var LockableEntity $lockable */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 45 |  |  |         $lockable = $this->getLockableEntity($entity, false); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 46 | 3 |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 47 | 2 |  |         if ($this->lockEnabled && $lockable->getId() !== null) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 48 | 2 |  |             $now = new \DateTime(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 49 | 2 |  |             $thresholdDate = clone $lockable->getUpdated(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 50 |  |  |             $thresholdDate->add(new \DateInterval('PT'.$this->threshold.'S')); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 51 | 2 |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 52 |  |  |             return $thresholdDate > $now; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 53 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 54 | 1 |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 55 |  |  |         return false; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 56 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 57 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 58 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 59 |  |  |      * @param User                    $user | 
            
                                                                                                            
                            
            
                                    
            
            
                | 60 |  |  |      * @param LockableEntityInterface $entity | 
            
                                                                                                            
                            
            
                                    
            
            
                | 61 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 62 |  |  |      * @return bool | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 63 | 2 |  |      */ | 
            
                                                                        
                            
            
                                    
            
            
                | 64 |  |  |     public function isEntityLocked(/*\Kunstmaan\AdminBundle\Entity\UserInterface*/ $user, LockableEntityInterface $entity) | 
            
                                                                        
                            
            
                                    
            
            
                | 65 |  |  |     { | 
            
                                                                        
                            
            
                                    
            
            
                | 66 | 2 |  |         // NEXT_MAJOR: remove type check and enable parameter typehint | 
            
                                                                        
                            
            
                                                                    
                                                                                                        
            
            
                | 67 |  | View Code Duplication |         if (!$user instanceof User && !$user instanceof UserInterface) { | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                        
                            
            
                                    
            
            
                | 68 | 2 |  |             throw new \InvalidArgumentException(sprintf('The "$user" argument must be of type "%s" or implement the "%s" interface', User::class, UserInterface::class)); | 
            
                                                                        
                            
            
                                    
            
            
                | 69 | 2 |  |         } | 
            
                                                                        
                            
            
                                    
            
            
                | 70 | 2 |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 71 |  |  |         /** @var LockableEntity $lockable */ | 
            
                                                                        
                            
            
                                    
            
            
                | 72 | 2 |  |         $lockable = $this->getLockableEntity($entity); | 
            
                                                                        
                            
            
                                    
            
            
                | 73 | 1 |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 74 |  |  |         if ($this->lockEnabled) { | 
            
                                                                        
                            
            
                                    
            
            
                | 75 | 1 |  |             $this->removeExpiredLocks($lockable); | 
            
                                                                        
                            
            
                                    
            
            
                | 76 | 1 |  |             $locks = $this->getEntityVersionLocksByLockableEntity($lockable, $user); | 
            
                                                                        
                            
            
                                    
            
            
                | 77 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 78 | 1 |  |             if ($locks === null || !\count($locks)) { | 
            
                                                                        
                            
            
                                    
            
            
                | 79 |  |  |                 $this->createEntityVersionLock($user, $lockable); | 
            
                                                                        
                            
            
                                    
            
            
                | 80 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 81 | 1 |  |                 $lockable->setUpdated(new \DateTime()); | 
            
                                                                        
                            
            
                                    
            
            
                | 82 |  |  |                 $this->objectManager->flush(); | 
            
                                                                        
                            
            
                                    
            
            
                | 83 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 84 |  |  |                 return false; | 
            
                                                                        
                            
            
                                    
            
            
                | 85 |  |  |             } | 
            
                                                                        
                            
            
                                    
            
            
                | 86 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 87 |  |  |             return true; | 
            
                                                                        
                            
            
                                    
            
            
                | 88 |  |  |         } | 
            
                                                                        
                            
            
                                    
            
            
                | 89 |  |  |  | 
            
                                                                        
                            
            
                                    
            
            
                | 90 |  |  |         return false; | 
            
                                                                        
                            
            
                                    
            
            
                | 91 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 92 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 93 | 1 |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 94 |  |  |      * When editing the entity, create a new entity translation lock. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 95 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 96 | 1 |  |      * @param User           $user | 
            
                                                                                                            
                            
            
                                    
            
            
                | 97 | 1 |  |      * @param LockableEntity $entity | 
            
                                                                                                            
                            
            
                                    
            
            
                | 98 | 1 |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 99 |  |  |     protected function createEntityVersionLock(/*\Kunstmaan\AdminBundle\Entity\UserInterface*/ $user, LockableEntity $entity) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 100 | 1 |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 101 |  |  |         // NEXT_MAJOR: remove type check and enable parameter typehint | 
            
                                                                                                            
                            
            
                                                                    
                                                                                                        
            
            
                | 102 |  | View Code Duplication |         if (!$user instanceof User && !$user instanceof UserInterface) { | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 103 | 1 |  |             throw new \InvalidArgumentException(sprintf('The "$user" argument must be of type "%s" or implement the "%s" interface', User::class, UserInterface::class)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 104 | 1 |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 105 | 1 |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 106 | 1 |  |         /** @var EntityVersionLock $lock */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 107 | 1 |  |         $lock = $this->objectManager->getRepository(EntityVersionLock::class)->findOneBy([ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 108 | 1 |  |             'owner' => $user->getUsername(), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 109 |  |  |             'lockableEntity' => $entity, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 110 |  |  |         ]); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 111 |  |  |         if (!$lock) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 112 |  |  |             $lock = new EntityVersionLock(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 113 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 114 |  |  |         $lock->setOwner($user->getUsername()); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 115 |  |  |         $lock->setLockableEntity($entity); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 116 | 1 |  |         $lock->setCreatedAt(new \DateTime()); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 117 |  |  |         $this->objectManager->persist($lock); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 118 |  |  |         $this->objectManager->flush(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 119 | 1 |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 120 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 121 | 1 |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 122 | 1 |  |      * @param LockableEntityInterface $entity | 
            
                                                                                                            
                            
            
                                    
            
            
                | 123 |  |  |      * @param User                    $userToExclude | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 124 | 1 |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 125 |  |  |      * @return array | 
            
                                                                                                            
                            
            
                                    
            
            
                | 126 | 1 |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 127 | 1 |  |     public function getUsersWithEntityVersionLock(LockableEntityInterface $entity, /*\Kunstmaan\AdminBundle\Entity\UserInterface*/ $userToExclude = null) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 128 | 1 |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 129 |  |  |         // NEXT_MAJOR: remove type check and enable parameter typehint | 
            
                                                                                                            
                            
            
                                                                    
                                                                                                        
            
            
                | 130 |  | View Code Duplication |         if (!$userToExclude instanceof User && !$userToExclude instanceof UserInterface) { | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 131 |  |  |             throw new \InvalidArgumentException(sprintf('The "$userToExclude" argument must be of type "%s" or implement the "%s" interface', User::class, UserInterface::class)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 132 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 133 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 134 |  |  |         /** @var LockableEntity $lockable */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 135 | 2 |  |         $lockable = $this->getLockableEntity($entity); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 136 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 137 | 2 |  |         return  array_reduce( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 138 | 2 |  |             $this->getEntityVersionLocksByLockableEntity($lockable, $userToExclude), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 139 | 2 |  |             function ($return, EntityVersionLock $item) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 140 |  |  |                 $return[] = $item->getOwner(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 141 | 2 |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 142 |  |  |                 return $return; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 143 |  |  |             }, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 144 |  |  |             [] | 
            
                                                                                                            
                            
            
                                    
            
            
                | 145 |  |  |         ); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 146 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 147 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 148 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 149 |  |  |      * @param LockableEntity $entity | 
            
                                                                                                            
                            
            
                                    
            
            
                | 150 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 151 | 3 |  |     protected function removeExpiredLocks(LockableEntity $entity) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 152 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 153 |  |  |         $locks = $this->objectManager->getRepository(EntityVersionLock::class)->getExpiredLocks($entity, $this->threshold); | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 154 | 3 |  |         foreach ($locks as $lock) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 155 |  |  |             $this->objectManager->remove($lock); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 156 | 3 |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 157 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 158 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 159 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 160 |  |  |      * When editing an entity, check if there is a lock for this entity. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 161 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 162 |  |  |      * @param LockableEntity $entity | 
            
                                                                                                            
                            
            
                                    
            
            
                | 163 |  |  |      * @param User           $userToExclude | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 164 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 165 |  |  |      * @return EntityVersionLock[] | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 166 | 6 |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 167 |  |  |     protected function getEntityVersionLocksByLockableEntity(LockableEntity $entity, /*\Kunstmaan\AdminBundle\Entity\UserInterface*/ $userToExclude = null) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 168 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 169 | 6 |  |         // NEXT_MAJOR: remove type check and enable parameter typehint | 
            
                                                                                                            
                            
            
                                                                    
                                                                                                        
            
            
                | 170 |  | View Code Duplication |         if (!$userToExclude instanceof User && !$userToExclude instanceof UserInterface) { | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 171 | 6 |  |             throw new \InvalidArgumentException(sprintf('The "$userToExclude" argument must be of type "%s" or implement the "%s" interface', User::class, UserInterface::class)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 172 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 173 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 174 |  |  |         /** @var EntityVersionLockRepository $objectRepository */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 175 |  |  |         $objectRepository = $this->objectManager->getRepository(EntityVersionLock::class); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 176 | 6 |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 177 |  |  |         return $objectRepository->getLocksForLockableEntity($entity, $this->threshold, $userToExclude); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 178 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 179 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 180 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 181 |  |  |      * Get or create a LockableEntity for an entity with LockableEntityInterface | 
            
                                                                                                            
                            
            
                                    
            
            
                | 182 | 6 |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 183 |  |  |      * @param LockableEntityInterface $entity | 
            
                                                                                                            
                            
            
                                    
            
            
                | 184 | 6 |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 185 | 6 |  |      * @return LockableEntity | 
            
                                                                                                            
                            
            
                                    
            
            
                | 186 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 187 |  |  |     protected function getLockableEntity(LockableEntityInterface $entity, $create = true) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 188 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 189 |  |  |         /** @var LockableEntity $lockable */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 190 | 6 |  |         $lockable = $this->objectManager->getRepository(LockableEntity::class)->getOrCreate($entity->getId(), \get_class($entity)); | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 191 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 192 | 6 |  |         if ($create === true && $lockable->getId() === null) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 193 | 6 |  |             $this->objectManager->persist($lockable); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 194 |  |  |             $this->objectManager->flush(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 195 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 196 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 197 |  |  |         return $lockable; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 198 | 6 |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 199 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 200 | 6 |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 201 | 6 |  |      * @param ObjectManager $objectManager | 
            
                                                                                                            
                            
            
                                    
            
            
                | 202 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 203 |  |  |     public function setObjectManager($objectManager) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 204 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 205 |  |  |         $this->objectManager = $objectManager; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 206 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 207 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 208 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 209 |  |  |      * @param int $threshold | 
            
                                                                                                            
                            
            
                                    
            
            
                | 210 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 211 |  |  |     public function setThreshold($threshold) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 212 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 213 |  |  |         $this->threshold = $threshold; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 214 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 215 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 216 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 217 |  |  |      * @param bool lockEnabled | 
            
                                                                                                            
                            
            
                                    
            
            
                | 218 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 219 |  |  |     public function setLockEnabled($lockEnabled) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 220 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 221 |  |  |         $this->lockEnabled = $lockEnabled; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 222 |  |  |     } | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 223 |  |  | } | 
            
                                                        
            
                                    
            
            
                | 224 |  |  |  | 
            
                        
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.