Completed
Push — master ( c31766...00e38f )
by Jaime Pérez
06:50
created
src/SAML2/Compat/Ssp/Logger.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
      */
16 16
     public function emergency($message, array $context = array())
17 17
     {
18
-        \SimpleSAML\Logger::emergency($message . var_export($context, true));
18
+        \SimpleSAML\Logger::emergency($message.var_export($context, true));
19 19
     }
20 20
 
21 21
     /**
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function alert($message, array $context = array())
32 32
     {
33
-        \SimpleSAML\Logger::alert($message . var_export($context, true));
33
+        \SimpleSAML\Logger::alert($message.var_export($context, true));
34 34
     }
35 35
 
36 36
     /**
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      */
45 45
     public function critical($message, array $context = array())
46 46
     {
47
-        \SimpleSAML\Logger::critical($message . var_export($context, true));
47
+        \SimpleSAML\Logger::critical($message.var_export($context, true));
48 48
     }
49 49
 
50 50
     /**
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     public function error($message, array $context = array())
59 59
     {
60
-        \SimpleSAML\Logger::error($message . var_export($context, true));
60
+        \SimpleSAML\Logger::error($message.var_export($context, true));
61 61
     }
62 62
 
63 63
     /**
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      */
73 73
     public function warning($message, array $context = array())
74 74
     {
75
-        \SimpleSAML\Logger::warning($message . var_export($context, true));
75
+        \SimpleSAML\Logger::warning($message.var_export($context, true));
76 76
     }
77 77
 
78 78
     /**
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      */
85 85
     public function notice($message, array $context = array())
86 86
     {
87
-        \SimpleSAML\Logger::notice($message . var_export($context, true));
87
+        \SimpleSAML\Logger::notice($message.var_export($context, true));
88 88
     }
89 89
 
90 90
     /**
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      */
99 99
     public function info($message, array $context = array())
100 100
     {
101
-        \SimpleSAML\Logger::info($message . var_export($context, true));
101
+        \SimpleSAML\Logger::info($message.var_export($context, true));
102 102
     }
103 103
 
104 104
     /**
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
      */
111 111
     public function debug($message, array $context = array())
112 112
     {
113
-        \SimpleSAML\Logger::debug($message . var_export($context, true));
113
+        \SimpleSAML\Logger::debug($message.var_export($context, true));
114 114
     }
115 115
 
116 116
     /**
Please login to merge, or discard this patch.