Completed
Push — 5.x ( 8d7e48...033ac2 )
by Lars
10:38 queued 04:25
created
lib/classes/Swift/ByteStream/FileByteStream.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
 
179 179
             if (!$pointer) {
180 180
                 throw new Swift_IoException(
181
-                    'Unable to open file for reading [' . $this->_path . ']'
181
+                    'Unable to open file for reading ['.$this->_path.']'
182 182
                 );
183 183
             }
184 184
 
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 
202 202
             if (!$pointer) {
203 203
                 throw new Swift_IoException(
204
-                    'Unable to open file for writing [' . $this->_path . ']'
204
+                    'Unable to open file for writing ['.$this->_path.']'
205 205
                 );
206 206
             }
207 207
 
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 
271 271
         $source = fopen($this->_path, 'rb');
272 272
         if (!$source) {
273
-            throw new Swift_IoException('Unable to open file for copying [' . $this->_path . ']');
273
+            throw new Swift_IoException('Unable to open file for copying ['.$this->_path.']');
274 274
         }
275 275
 
276 276
         fseek($tmpFile, 0, SEEK_SET);
Please login to merge, or discard this patch.
lib/classes/Swift/DependencyContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
     {
117 117
         if (!$this->has($itemName)) {
118 118
             throw new Swift_DependencyException(
119
-                'Cannot lookup dependency "' . $itemName . '" since it is not registered.'
119
+                'Cannot lookup dependency "'.$itemName.'" since it is not registered.'
120 120
             );
121 121
         }
122 122
 
Please login to merge, or discard this patch.
lib/classes/Swift/Mailer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
      */
54 54
     public function createMessage($service = 'message')
55 55
     {
56
-        return Swift_DependencyContainer::getInstance()->lookup('message.' . $service);
56
+        return Swift_DependencyContainer::getInstance()->lookup('message.'.$service);
57 57
     }
58 58
 
59 59
     /**
Please login to merge, or discard this patch.
lib/classes/Swift.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
             return;
47 47
         }
48 48
 
49
-        $path = __DIR__ . '/' . str_replace('_', '/', $class) . '.php';
49
+        $path = __DIR__.'/'.str_replace('_', '/', $class).'.php';
50 50
 
51 51
         if (!file_exists($path)) {
52 52
             return;
Please login to merge, or discard this patch.
lib/swiftmailer_generate_mimes_config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@
 block discarded – undo
169 169
     ksort($valid_mime_types);
170 170
 
171 171
     // combine mime types and extensions array
172
-    $output = "$preamble\$swift_mime_types = array(\n    " . implode($valid_mime_types, ",\n    ") . "\n);";
172
+    $output = "$preamble\$swift_mime_types = array(\n    ".implode($valid_mime_types, ",\n    ")."\n);";
173 173
 
174 174
     // write mime_types.php config file
175 175
     @file_put_contents('./mime_types.php', $output);
Please login to merge, or discard this patch.