@@ -3,7 +3,6 @@ |
||
| 3 | 3 | namespace Developtech\AgilityBundle\Manager; |
| 4 | 4 | |
| 5 | 5 | use Doctrine\ORM\EntityManager; |
| 6 | - |
|
| 7 | 6 | use Developtech\AgilityBundle\Model\ProjectModel; |
| 8 | 7 | |
| 9 | 8 | class FeedbackManager { |
@@ -3,16 +3,11 @@ |
||
| 3 | 3 | namespace Developtech\AgilityBundle\Manager; |
| 4 | 4 | |
| 5 | 5 | use Doctrine\ORM\EntityManager; |
| 6 | - |
|
| 7 | 6 | use Developtech\AgilityBundle\Model\ProjectModel; |
| 8 | 7 | use Developtech\AgilityBundle\Model\FeedbackModel; |
| 9 | - |
|
| 10 | 8 | use Developtech\AgilityBundle\Entity\Feedback; |
| 11 | - |
|
| 12 | 9 | use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; |
| 13 | - |
|
| 14 | 10 | use Developtech\AgilityBundle\Utils\Slugger; |
| 15 | - |
|
| 16 | 11 | use Symfony\Component\Security\Core\User\UserInterface; |
| 17 | 12 | |
| 18 | 13 | class FeedbackManager { |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | * @return FeedbackModel |
| 59 | 59 | */ |
| 60 | 60 | public function getFeedback($id) { |
| 61 | - if(($feedback = $this->em->getRepository(Feedback::class)->find($id)) === null) { |
|
| 61 | + if (($feedback = $this->em->getRepository(Feedback::class)->find($id)) === null) { |
|
| 62 | 62 | throw new NotFoundHttpException('Feedback not found'); |
| 63 | 63 | } |
| 64 | 64 | return $feedback; |
@@ -2,8 +2,6 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Developtech\AgilityBundle\Model; |
| 4 | 4 | |
| 5 | -use Doctrine\ORM\Mapping as ORM; |
|
| 6 | - |
|
| 7 | 5 | use Doctrine\Common\Collections\ArrayCollection; |
| 8 | 6 | |
| 9 | 7 | /** |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | */ |
| 20 | 20 | public function countPerStatus(ProjectModel $project, $status) { |
| 21 | 21 | $statement = $this->getEntityManager()->getConnection()->prepare( |
| 22 | - "SELECT COUNT(*) as nb_feedbacks FROM {$this->getClassMetadata()->getTableName()} " . |
|
| 22 | + "SELECT COUNT(*) as nb_feedbacks FROM {$this->getClassMetadata()->getTableName()} ". |
|
| 23 | 23 | "WHERE project_id = :project_id AND status = :status" |
| 24 | 24 | ); |
| 25 | 25 | $statement->execute([ |
@@ -41,7 +41,7 @@ |
||
| 41 | 41 | * @return FeatureModel |
| 42 | 42 | */ |
| 43 | 43 | public function getFeature($id) { |
| 44 | - if(($feature = $this->em->getRepository(Feature::class)->find($id)) === null) { |
|
| 44 | + if (($feature = $this->em->getRepository(Feature::class)->find($id)) === null) { |
|
| 45 | 45 | throw new NotFoundHttpException('Feature not found'); |
| 46 | 46 | } |
| 47 | 47 | return $feature; |
@@ -48,7 +48,7 @@ |
||
| 48 | 48 | ->getNamingStrategy() |
| 49 | 49 | ; |
| 50 | 50 | |
| 51 | - switch($metadata->getName()) { |
|
| 51 | + switch ($metadata->getName()) { |
|
| 52 | 52 | case self::MODEL_PROJECT: return $this->mapProject($metadata, $namingStrategy); |
| 53 | 53 | case self::MODEL_FEATURE: return $this->mapFeature($metadata, $namingStrategy); |
| 54 | 54 | case self::MODEL_FEEDBACK: return $this->mapFeedback($metadata, $namingStrategy); |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | * For the full copyright and license information, please view the LICENSE |
| 8 | 8 | * file that was distributed with this source code. |
| 9 | 9 | */ |
| 10 | -if (!($loader = @include __DIR__ . '/../vendor/autoload.php')) { |
|
| 10 | +if (!($loader = @include __DIR__.'/../vendor/autoload.php')) { |
|
| 11 | 11 | echo <<<EOT |
| 12 | 12 | You need to install the project dependencies using Composer: |
| 13 | 13 | $ wget http://getcomposer.org/composer.phar |