Failed Conditions
Pull Request — master (#3876)
by Abdul Malik
22:45 queued 13:31
created
src/PhpSpreadsheet/Chart/Chart.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,8 +87,8 @@
 block discarded – undo
87 87
      * majorGridlines and minorGridlines are deprecated, moved to Axis.
88 88
      */
89 89
     public function __construct(/**
90
-         * Chart Name.
91
-         */
90
+     * Chart Name.
91
+     */
92 92
         private string $name, /**
93 93
          * Chart Title.
94 94
          */
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Chart/Title.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@
 block discarded – undo
26 26
      * Create a new Title.
27 27
      */
28 28
     public function __construct(/**
29
-         * Title Caption.
30
-         *
31
-         * @var array<RichText|string>|RichText|string
32
-         */
29
+     * Title Caption.
30
+     *
31
+     * @var array<RichText|string>|RichText|string
32
+     */
33 33
         private array|RichText|string $caption = '', /**
34 34
          * Title Layout.
35 35
          */
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Calculation.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2870,8 +2870,8 @@
 block discarded – undo
2870 2870
     ];
2871 2871
 
2872 2872
     public function __construct(/**
2873
-         * Instance of the spreadsheet this Calculation Engine is using.
2874
-         */
2873
+     * Instance of the spreadsheet this Calculation Engine is using.
2874
+     */
2875 2875
         private ?Spreadsheet $spreadsheet = null
2876 2876
     ) {
2877 2877
         $this->cyclicReferenceStack = new CyclicReferenceStack();
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/Xls/Font.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
      * Constructor.
16 16
      */
17 17
     public function __construct(/**
18
-         * Font.
19
-         */
18
+     * Font.
19
+     */
20 20
         private \PhpOffice\PhpSpreadsheet\Style\Font $font
21 21
     ) {
22 22
         $this->colorIndex = 0x7FFF;
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/Html.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -123,8 +123,8 @@
 block discarded – undo
123 123
      * Create a new HTML.
124 124
      */
125 125
     public function __construct(/**
126
-         * Spreadsheet object.
127
-         */
126
+     * Spreadsheet object.
127
+     */
128 128
         protected Spreadsheet $spreadsheet
129 129
     ) {
130 130
         $this->defaultFont = $this->spreadsheet->getDefaultStyle()->getFont();
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Worksheet/Worksheet.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -318,8 +318,8 @@
 block discarded – undo
318 318
      * Create a new worksheet.
319 319
      */
320 320
     public function __construct(/**
321
-         * Parent spreadsheet.
322
-         */
321
+     * Parent spreadsheet.
322
+     */
323 323
         private ?Spreadsheet $parent = null,
324 324
         string $title = 'Worksheet'
325 325
     ) {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Cell/Cell.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,8 +93,8 @@
 block discarded – undo
93 93
      * @throws SpreadsheetException
94 94
      */
95 95
     public function __construct(/**
96
-         * Value of the cell.
97
-         */
96
+     * Value of the cell.
97
+     */
98 98
         private mixed $value,
99 99
         ?string $dataType,
100 100
         Worksheet $worksheet
Please login to merge, or discard this patch.