Completed
Push — master ( 0a7e57...033978 )
by Thomas Mauro
02:31
created
src/ServiceFactory/AbstractServiceFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         $matches = [];
58 58
 
59 59
         $pattern = '/^%s\.(?P<serviceType>[a-z0-9_]+)\.(?P<serviceName>[a-z0-9_]+)$/';
60
-        $pattern = sprintf($pattern, $this->configKey . '.sentry');
60
+        $pattern = sprintf($pattern, $this->configKey.'.sentry');
61 61
         if (!preg_match($pattern, $name, $matches)) {
62 62
             return false;
63 63
         }
Please login to merge, or discard this patch.
src/Processor/SanitizeDataProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
             || is_scalar($item)
22 22
             || (is_object($item) && method_exists($item, '__toString'))
23 23
         ) {
24
-            $item = is_object($item) ? (string)$item : $item;
24
+            $item = is_object($item) ? (string) $item : $item;
25 25
         } elseif (is_object($item)) {
26 26
             $item = '[object '.get_class($item).']';
27 27
         } else {
Please login to merge, or discard this patch.