Failed Conditions
Pull Request — experimental/sf (#3236)
by Kentaro
58:58 queued 51:26
created
src/Eccube/Service/OrderPdfService.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -286,12 +286,12 @@  discard block
 block discarded – undo
286 286
 
287 287
         // 電話番号
288 288
         $text = 'TEL: '.$this->baseInfoRepository->getPhoneNumber();
289
-        $this->lfText(125, 72, $text, 8);  //TEL・FAX
289
+        $this->lfText(125, 72, $text, 8); //TEL・FAX
290 290
 
291 291
         // メールアドレス
292 292
         if (strlen($this->baseInfoRepository->getEmail01()) > 0) {
293 293
             $text = 'Email: '.$this->baseInfoRepository->getEmail01();
294
-            $this->lfText(125, 75, $text, 8);      // Email
294
+            $this->lfText(125, 75, $text, 8); // Email
295 295
         }
296 296
 
297 297
         // ロゴ画像(app配下のロゴ画像を優先して読み込む)
@@ -306,9 +306,9 @@  discard block
 block discarded – undo
306 306
      */
307 307
     protected function renderMessageData(array $formData)
308 308
     {
309
-        $this->lfText(27, 70, $formData['message1'], 8);  //メッセージ1
310
-        $this->lfText(27, 74, $formData['message2'], 8);  //メッセージ2
311
-        $this->lfText(27, 78, $formData['message3'], 8);  //メッセージ3
309
+        $this->lfText(27, 70, $formData['message1'], 8); //メッセージ1
310
+        $this->lfText(27, 74, $formData['message2'], 8); //メッセージ2
311
+        $this->lfText(27, 78, $formData['message3'], 8); //メッセージ3
312 312
     }
313 313
 
314 314
     /**
@@ -585,12 +585,12 @@  discard block
 block discarded – undo
585 585
                 $ln = ($i == (count($row) - 1)) ? 1 : 0;
586 586
 
587 587
                 $this->MultiCell(
588
-                    $w[$i],             // セル幅
589
-                    $cellHeight,        // セルの最小の高さ
590
-                    $col,               // 文字列
591
-                    1,                  // 境界線の描画方法を指定
592
-                    $align,             // テキストの整列
593
-                    $fill,              // 背景の塗つぶし指定
588
+                    $w[$i], // セル幅
589
+                    $cellHeight, // セルの最小の高さ
590
+                    $col, // 文字列
591
+                    1, // 境界線の描画方法を指定
592
+                    $align, // テキストの整列
593
+                    $fill, // 背景の塗つぶし指定
594 594
                     $ln                 // 出力後のカーソルの移動方法
595 595
                 );
596 596
                 $h = $this->getLastH();
Please login to merge, or discard this patch.