Completed
Push — master ( e7e5f9...d9d513 )
by Rudie
01:21
created
src/IMAPTransport.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
 	protected function iteratorToLowercaseArray( $iterator ) {
70 70
 		$data = [];
71 71
 		foreach ( $iterator as $name => $value ) {
72
-			$data[ strtolower($name) ] = $value;
72
+			$data[strtolower($name)] = $value;
73 73
 		}
74 74
 
75 75
 		return $data;
Please login to merge, or discard this patch.
src/IMAPMailbox.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
 					}
96 96
 				}
97 97
 
98
-				if ( $options['limit'] && isset($messages[ $options['limit'] - 1 ]) ) {
98
+				if ( $options['limit'] && isset($messages[$options['limit'] - 1]) ) {
99 99
 					break;
100 100
 				}
101 101
 			}
Please login to merge, or discard this patch.
src/IMAPMessage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
 
71 71
 	public function header( $name ) {
72 72
 		$headers = $this->headers();
73
-		return @$headers[ strtolower($name) ];
73
+		return @$headers[strtolower($name)];
74 74
 	}
75 75
 
76 76
 	public function createMessagePart( $structure, $section ) {
Please login to merge, or discard this patch.
src/IMAPMessagePartInterface.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,8 @@
 block discarded – undo
35 35
 	public function subtype();
36 36
 
37 37
 		/**
38
-	 * @return string
39
-	 */
38
+		 * @return string
39
+		 */
40 40
 	public function content();
41 41
 
42 42
 	/**
Please login to merge, or discard this patch.
src/IMAPMessageContent.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,10 +54,10 @@  discard block
 block discarded – undo
54 54
 			$this->parameters['bytes'] = @$structure->bytes;
55 55
 
56 56
 			foreach ( (array) @$structure->parameters as $param ) {
57
-				$this->parameters[ strtolower($param->attribute) ] = $param->value;
57
+				$this->parameters[strtolower($param->attribute)] = $param->value;
58 58
 			}
59 59
 			foreach ( (array) @$structure->dparameters as $param ) {
60
-				$this->parameters[ strtolower($param->attribute) ] = $param->value;
60
+				$this->parameters[strtolower($param->attribute)] = $param->value;
61 61
 			}
62 62
 		}
63 63
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 	 */
71 71
 	public function parameter( $name ) {
72 72
 		$parameters = $this->parameters();
73
-		return @$parameters[ strtolower($name) ];
73
+		return @$parameters[strtolower($name)];
74 74
 	}
75 75
 
76 76
 	/**
Please login to merge, or discard this patch.