Passed
Push — master ( d73353...001bdc )
by Aimeos
18:49 queued 06:32
created
src/Base/View/Helper/Request/Symfony.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -115,8 +115,7 @@
 block discarded – undo
115 115
 					$value->getClientOriginalName(),
116 116
 					$value->getClientMimeType()
117 117
 				);
118
-			}
119
-			elseif( is_array( $value ) )
118
+			} elseif( is_array( $value ) )
120 119
 			{
121 120
 				$list[$key] = $this->getFiles( $value );
122 121
 			}
Please login to merge, or discard this patch.
src/Base/Mail/Message/Symfony.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
 	{
233 233
 		if( $data )
234 234
 		{
235
-			$mimetype = $mimetype ?: (new \finfo( FILEINFO_MIME_TYPE ))->buffer( $data );
235
+			$mimetype = $mimetype ?: ( new \finfo( FILEINFO_MIME_TYPE ) )->buffer( $data );
236 236
 			$filename = $filename ?: md5( $data );
237 237
 
238 238
 			$this->object->attach( $data, $filename, $mimetype );
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
 	{
255 255
 		if( $data )
256 256
 		{
257
-			$mimetype = $mimetype ?: (new \finfo( FILEINFO_MIME_TYPE ))->buffer( $data );
257
+			$mimetype = $mimetype ?: ( new \finfo( FILEINFO_MIME_TYPE ) )->buffer( $data );
258 258
 			$filename = $filename ?: md5( $data );
259 259
 
260 260
 			$this->object->embed( $data, $filename, $mimetype );
Please login to merge, or discard this patch.
src/Base/Mail/Manager/Symfony.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,6 +42,6 @@
 block discarded – undo
42 42
 	 */
43 43
 	public function get( string $name ) : \Aimeos\Base\Mail\Iface
44 44
 	{
45
-        return new \Aimeos\Base\Mail\Symfony( $this->closure );
45
+		return new \Aimeos\Base\Mail\Symfony( $this->closure );
46 46
 	}
47 47
 }
Please login to merge, or discard this patch.