open-orchestra/open-orchestra-cms-bundle

View on GitHub
LogBundle/EventSubscriber/LogGroupSubscriber.php

Summary

Maintainability
A
3 hrs
Test Coverage

Parameter $event has undeclared type \OpenOrchestra\UserBundle\Event\GroupEvent
Open

    public function groupCreate(GroupEvent $event)

Call to method getGroup from undeclared class \OpenOrchestra\UserBundle\Event\GroupEvent
Open

        $this->sendLog('open_orchestra_log.group.create', $event->getGroup());

Reference to constant GROUP_UPDATE from undeclared class \OpenOrchestra\UserBundle\GroupEvents
Open

            GroupEvents::GROUP_UPDATE => 'groupUpdate',

Parameter $event has undeclared type \OpenOrchestra\UserBundle\Event\GroupEvent
Open

    public function groupDelete(GroupEvent $event)

Reference to constant GROUP_CREATE from undeclared class \OpenOrchestra\UserBundle\GroupEvents
Open

            GroupEvents::GROUP_CREATE => 'groupCreate',

Call to method getGroup from undeclared class \OpenOrchestra\UserBundle\Event\GroupEvent
Open

        $this->sendLog('open_orchestra_log.group.delete', $event->getGroup());

Parameter $group has undeclared type \FOS\UserBundle\Model\GroupInterface (Did you mean interface \OpenOrchestra\Backoffice\Model\GroupInterface)
Open

    protected function sendLog($message, GroupInterface $group)

Parameter $event has undeclared type \OpenOrchestra\UserBundle\Event\GroupEvent
Open

    public function groupUpdate(GroupEvent $event)

Call to method getGroup from undeclared class \OpenOrchestra\UserBundle\Event\GroupEvent
Open

        $this->sendLog('open_orchestra_log.group.update', $event->getGroup());

Reference to constant GROUP_DELETE from undeclared class \OpenOrchestra\UserBundle\GroupEvents
Open

            GroupEvents::GROUP_DELETE => 'groupDelete',

Call to method getName from undeclared class \FOS\UserBundle\Model\GroupInterface (Did you mean interface \OpenOrchestra\Backoffice\Model\GroupInterface)
Open

        $this->logger->info($message, array('group_name' => $group->getName()));

Similar blocks of code found in 2 locations. Consider refactoring.
Open

<?php

namespace OpenOrchestra\LogBundle\EventSubscriber;

use FOS\UserBundle\Model\GroupInterface;
Severity: Major
Found in LogBundle/EventSubscriber/LogGroupSubscriber.php and 1 other location - About 3 hrs to fix
LogBundle/EventSubscriber/LogStatusSubscriber.php on lines 1..58

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 161.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

There are no issues that match your filters.

Category
Status