Skip to content

Commit

Permalink
Issue #2903855 Use Leading Backslash. 5 fixes in 4 files
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Smith authored and fago committed Sep 30, 2017
1 parent 4c5a81d commit 1b929e2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Context/AnnotatedClassDiscovery.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Drupal\rules\Context;

use Doctrine\Common\Annotations\SimpleAnnotationReader;
use \Drupal\Core\Plugin\Discovery\AnnotatedClassDiscovery as CoreAnnotatedClassDiscovery;
use Drupal\Core\Plugin\Discovery\AnnotatedClassDiscovery as CoreAnnotatedClassDiscovery;

/**
* Extends the annotation class discovery for usage with Rules context.
Expand Down
2 changes: 1 addition & 1 deletion src/Context/ContextAwarePluginInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Drupal\rules\Context;

use \Drupal\Core\Plugin\ContextAwarePluginInterface as CoreContextAwarePluginInterface;
use Drupal\Core\Plugin\ContextAwarePluginInterface as CoreContextAwarePluginInterface;

/**
* Rules extension of ContextAwarePluginInterface.
Expand Down
4 changes: 2 additions & 2 deletions src/Context/ContextDefinition.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Drupal\rules\Context;

use \Drupal\Core\Plugin\Context\ContextDefinition as ContextDefinitionCore;
use \Drupal\Component\Plugin\Exception\ContextException;
use Drupal\Core\Plugin\Context\ContextDefinition as ContextDefinitionCore;
use Drupal\Component\Plugin\Exception\ContextException;

/**
* Extends the core context definition class with useful methods.
Expand Down
2 changes: 1 addition & 1 deletion src/Context/ContextDefinitionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Drupal\rules\Context;

use \Drupal\Core\Plugin\Context\ContextDefinitionInterface as ContextDefinitionInterfaceCore;
use Drupal\Core\Plugin\Context\ContextDefinitionInterface as ContextDefinitionInterfaceCore;

/**
* Context definition information required by Rules.
Expand Down

0 comments on commit 1b929e2

Please sign in to comment.