Passed
Push — master ( 295c7f...61bbf4 )
by Zaahid
09:01
created
src/Message/MimePart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
     public function getContentDisposition($default = 'inline')
168 168
     {
169 169
         $value = $this->getHeaderValue(HeaderConsts::CONTENT_DISPOSITION);
170
-        if ($value === null || !in_array($value, [ 'inline', 'attachment' ])) {
170
+        if ($value === null || !in_array($value, ['inline', 'attachment'])) {
171 171
             return $default;
172 172
         }
173 173
         return strtolower($value);
Please login to merge, or discard this patch.
src/Message/Helper/PrivacyHelper.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      */
101 101
     public function overwrite8bitContentEncoding(IMessage $message)
102 102
     {
103
-        $parts = $message->getAllParts(function (IMessagePart $part) {
103
+        $parts = $message->getAllParts(function(IMessagePart $part) {
104 104
             return strcasecmp($part->getContentTransferEncoding(), '8bit') === 0;
105 105
         });
106 106
         foreach ($parts as $part) {
@@ -108,8 +108,7 @@  discard block
 block discarded – undo
108 108
             $part->setRawHeader(
109 109
                 HeaderConsts::CONTENT_TRANSFER_ENCODING,
110 110
                 ($contentType === 'text/plain' || $contentType === 'text/html') ?
111
-                'quoted-printable' :
112
-                'base64'
111
+                'quoted-printable' : 'base64'
113 112
             );
114 113
         }
115 114
     }
Please login to merge, or discard this patch.
src/Message/Helper/MultipartHelper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     public function getUniqueBoundary($mimeType)
48 48
     {
49 49
         $type = ltrim(strtoupper(preg_replace('/^(multipart\/(.{3}).*|.*)$/i', '$2-', $mimeType)), '-');
50
-        return uniqid('----=MMP-' . $type . '-', true);
50
+        return uniqid('----=MMP-'.$type.'-', true);
51 51
     }
52 52
 
53 53
     /**
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         $part->setRawHeader(
63 63
             HeaderConsts::CONTENT_TYPE,
64 64
             "$mimeType;\r\n\tboundary=\""
65
-                . $this->getUniqueBoundary($mimeType) . '"'
65
+                . $this->getUniqueBoundary($mimeType).'"'
66 66
         );
67 67
         $part->notify();
68 68
     }
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
      */
204 204
     public function moveAllNonMultiPartsToMessageExcept(IMessage $message, IMimePart $from, $exceptMimeType)
205 205
     {
206
-        $parts = $from->getAllParts(function (IMessagePart $part) use ($exceptMimeType) {
206
+        $parts = $from->getAllParts(function(IMessagePart $part) use ($exceptMimeType) {
207 207
             if ($part instanceof IMimePart && $part->isMultiPart()) {
208 208
                 return false;
209 209
             }
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
     public function createAndAddPartForAttachment(IMessage $message, $resource, $mimeType, $disposition, $filename = null, $encoding = 'base64')
331 331
     {
332 332
         if ($filename === null) {
333
-            $filename = 'file' . uniqid();
333
+            $filename = 'file'.uniqid();
334 334
         }
335 335
 
336 336
         $safe = iconv('UTF-8', 'US-ASCII//translit//ignore', $filename);
Please login to merge, or discard this patch.
src/Message/PartFilter.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -30,10 +30,10 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public static function fromAttachmentFilter()
32 32
     {
33
-        return function (IMessagePart $part) {
33
+        return function(IMessagePart $part) {
34 34
             $type = $part->getContentType();
35 35
             $disp = $part->getContentDisposition();
36
-            if (in_array($type, [ 'text/plain', 'text/html' ]) && $disp !== null && strcasecmp($disp, 'inline') === 0) {
36
+            if (in_array($type, ['text/plain', 'text/html']) && $disp !== null && strcasecmp($disp, 'inline') === 0) {
37 37
                 return false;
38 38
             }
39 39
             return !(($part instanceof IMimePart)
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public static function fromHeaderValue($name, $value, $excludeSignedParts = true)
58 58
     {
59
-        return function (IMessagePart $part) use ($name, $value, $excludeSignedParts) {
59
+        return function(IMessagePart $part) use ($name, $value, $excludeSignedParts) {
60 60
             if ($part instanceof IMimePart) {
61 61
                 if ($excludeSignedParts && $part->isSignaturePart()) {
62 62
                     return false;
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      */
77 77
     public static function fromContentType($mimeType)
78 78
     {
79
-        return function (IMessagePart $part) use ($mimeType) {
79
+        return function(IMessagePart $part) use ($mimeType) {
80 80
             return strcasecmp($part->getContentType(), $mimeType) === 0;
81 81
         };
82 82
     }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      */
91 91
     public static function fromInlineContentType($mimeType)
92 92
     {
93
-        return function (IMessagePart $part) use ($mimeType) {
93
+        return function(IMessagePart $part) use ($mimeType) {
94 94
             $disp = $part->getContentDisposition();
95 95
             return (strcasecmp($part->getContentType(), $mimeType) === 0) && ($disp === null
96 96
                 || strcasecmp($disp, 'attachment') !== 0);
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      */
112 112
     public static function fromDisposition($disposition, $includeMultipart = false, $includeSignedParts = false)
113 113
     {
114
-        return function (IMessagePart $part) use ($disposition, $includeMultipart, $includeSignedParts) {
114
+        return function(IMessagePart $part) use ($disposition, $includeMultipart, $includeSignedParts) {
115 115
             if (($part instanceof IMimePart) && ((!$includeMultipart && $part->isMultiPart()) || (!$includeSignedParts && $part->isSignaturePart()))) {
116 116
                 return false;
117 117
             }
Please login to merge, or discard this patch.
src/Message/MultiPart.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     private function getAllPartsIterator()
43 43
     {
44 44
         $iter = new AppendIterator();
45
-        $iter->append(new ArrayIterator([ $this ]));
45
+        $iter->append(new ArrayIterator([$this]));
46 46
         $iter->append(new RecursiveIteratorIterator($this->partChildrenContainer, RecursiveIteratorIterator::SELF_FIRST));
47 47
         return $iter;
48 48
     }
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     public function getPartByContentId($contentId)
130 130
     {
131 131
         $sanitized = preg_replace('/^\s*<|>\s*$/', '', $contentId);
132
-        return $this->getPart(0, function (IMessagePart $part) use ($sanitized) {
132
+        return $this->getPart(0, function(IMessagePart $part) use ($sanitized) {
133 133
             $cid = $part->getContentId();
134 134
             return ($cid !== null && strcasecmp($cid, $sanitized) === 0);
135 135
         });
Please login to merge, or discard this patch.
src/Container.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 autoRegister($class)
55 55
     {
56
-        $fn = function ($c) use ($class) {
56
+        $fn = function($c) use ($class) {
57 57
             $ref = new ReflectionClass($class);
58 58
             $cargs = ($ref->getConstructor() !== null) ? $ref->getConstructor()->getParameters() : [];
59 59
             $ap = [];
Please login to merge, or discard this patch.
src/Header/Consumer/Received/GenericReceivedConsumer.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      */
77 77
     protected function getSubConsumers()
78 78
     {
79
-        return [ $this->consumerService->getCommentConsumer() ];
79
+        return [$this->consumerService->getCommentConsumer()];
80 80
     }
81 81
 
82 82
     /**
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      */
89 89
     protected function isStartToken($token)
90 90
     {
91
-        $pattern = '/^' . preg_quote($this->getPartName(), '/') . '$/i';
91
+        $pattern = '/^'.preg_quote($this->getPartName(), '/').'$/i';
92 92
         return (preg_match($pattern, $token) === 1);
93 93
     }
94 94
 
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     {
123 123
         return [
124 124
             '\s+',
125
-            '(\A\s*|\s+)(?i)' . preg_quote($this->getPartName(), '/') . '(?-i)(?=\s+)'
125
+            '(\A\s*|\s+)(?i)'.preg_quote($this->getPartName(), '/').'(?-i)(?=\s+)'
126 126
         ];
127 127
     }
128 128
 
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
         foreach ($filtered as $part) {
143 143
             if ($part instanceof CommentPart) {
144 144
                 $ret[] = $part;
145
-                continue;    // getValue() is empty anyway, but for clarity...
145
+                continue; // getValue() is empty anyway, but for clarity...
146 146
             }
147 147
             $strValue .= $part->getValue();
148 148
         }
Please login to merge, or discard this patch.
src/Header/MimeEncodedHeader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@
 block discarded – undo
43 43
     protected function setParseHeaderValue(AbstractConsumer $consumer)
44 44
     {
45 45
         $value = $this->rawValue;
46
-        $matchp = '~' . MimeLiteralPart::MIME_PART_PATTERN . '~';
47
-        $value = preg_replace_callback($matchp, function ($matches) {
46
+        $matchp = '~'.MimeLiteralPart::MIME_PART_PATTERN.'~';
47
+        $value = preg_replace_callback($matchp, function($matches) {
48 48
             return $this->mimeLiteralPartFactory->newInstance($matches[0]);
49 49
         }, $value);
50 50
         $this->parts = $consumer($value);
Please login to merge, or discard this patch.
src/Header/Consumer/GenericConsumer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
         array $parts,
100 100
         array &$retParts,
101 101
         $curIndex,
102
-        HeaderPart &$spacePart,
102
+        HeaderPart & $spacePart,
103 103
         HeaderPart $lastPart
104 104
     ) {
105 105
         $nextPart = $parts[$curIndex];
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      * @param int $curIndex
122 122
      * @param HeaderPart $spacePart
123 123
      */
124
-    private function addSpaces(array $parts, array &$retParts, $curIndex, HeaderPart &$spacePart = null)
124
+    private function addSpaces(array $parts, array &$retParts, $curIndex, HeaderPart & $spacePart = null)
125 125
     {
126 126
         $lastPart = end($retParts);
127 127
         if ($spacePart !== null && $curIndex < count($parts) && $parts[$curIndex]->getValue() !== '' && $lastPart !== false) {
Please login to merge, or discard this patch.