Completed
Branch master (4bdd20)
by Christian
03:29
created
Category
src/Identification/IdentificationAbstract.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 
32 32
         $this->identifier    = $identifier;
33 33
         $this->type          = get_class($this);
34
-        $this->identity_hash = md5($this->getType(). (string)$identifier);
34
+        $this->identity_hash = md5($this->getType() . (string) $identifier);
35 35
     }
36 36
 
37 37
     /**
Please login to merge, or discard this patch.
src/Doorkeeper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
         }
76 76
 
77 77
         $cache_key = md5(sprintf('%s:%s', $feature_name, ($requestor) ? $requestor->getIdentityHash() : ''));
78
-        $fallback = function () use ($feature_name, $requestor, $log_context): bool {
78
+        $fallback = function() use ($feature_name, $requestor, $log_context): bool {
79 79
             $feature = $this->feature_set->getFeatureByName($feature_name);
80 80
 
81 81
             if (!$feature->isEnabled()) {
Please login to merge, or discard this patch.
src/Logger/Processor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     {
57 57
         $class_paths = explode('\\', get_class($identity));
58 58
 
59
-        return (string)array_pop($class_paths);
59
+        return (string) array_pop($class_paths);
60 60
     }
61 61
 
62 62
     private function flattenIdCollections(array $requestor_context): array
Please login to merge, or discard this patch.
src/Features/Feature.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 27
      */
28 28
     public function __construct(string $name, bool $enabled, array $rules = [])
29 29
     {
30
-        $this->name       = $name;
31
-        $this->enabled  = $enabled;
30
+        $this->name = $name;
31
+        $this->enabled = $enabled;
32 32
 
33 33
         foreach ($rules as $rule) {
34 34
             $this->addRule($rule);
Please login to merge, or discard this patch.