forked from apache/netbeans
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request apache#7423 from junichi11/php-gh-7190-formatting-…
…for-typed-fields-alignment Fix formatting for typed field and const alignment apache#7190
- Loading branch information
Showing
14 changed files
with
674 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
...est/unit/data/testfiles/formatting/alignment/groupAlignmentAssignmentTypedConstants01.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
class GH7190_01 { | ||
|
||
private const ?string C1 = ''; | ||
private const ?Test C2 = null; | ||
private const Test1|Test2|null C3 = null; | ||
private const array|(Test2&Test3) CONST4 = []; | ||
private const CONSTANT5 = []; | ||
} | ||
|
||
class GH7190_02 { | ||
|
||
private const ?string CONST1 = ''; | ||
public const Test CONST2 = null; | ||
private const ?int CONST3 = null; | ||
protected const ?array CONST4 = []; | ||
private const CONSTANT5 = []; | ||
const array | ( Test2 & Test3 ) CONST6 = []; | ||
} |
39 changes: 39 additions & 0 deletions
39
...entAssignmentTypedConstants01.php.testGroupAlignmentAssignmentTypedConstants01a.formatted
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
|
||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
class GH7190_01 { | ||
|
||
private const ?string C1 = ''; | ||
private const ?Test C2 = null; | ||
private const Test1|Test2|null C3 = null; | ||
private const array|(Test2&Test3) CONST4 = []; | ||
private const CONSTANT5 = []; | ||
} | ||
|
||
class GH7190_02 { | ||
|
||
private const ?string CONST1 = ''; | ||
public const Test CONST2 = null; | ||
private const ?int CONST3 = null; | ||
protected const ?array CONST4 = []; | ||
private const CONSTANT5 = []; | ||
const array|(Test2&Test3) CONST6 = []; | ||
} |
39 changes: 39 additions & 0 deletions
39
...entAssignmentTypedConstants01.php.testGroupAlignmentAssignmentTypedConstants01b.formatted
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
|
||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
class GH7190_01 { | ||
|
||
private const ?string C1 = ''; | ||
private const ?Test C2 = null; | ||
private const Test1|Test2|null C3 = null; | ||
private const array|(Test2&Test3) CONST4 = []; | ||
private const CONSTANT5 = []; | ||
} | ||
|
||
class GH7190_02 { | ||
|
||
private const ?string CONST1 = ''; | ||
public const Test CONST2 = null; | ||
private const ?int CONST3 = null; | ||
protected const ?array CONST4 = []; | ||
private const CONSTANT5 = []; | ||
const array|(Test2&Test3) CONST6 = []; | ||
} |
39 changes: 39 additions & 0 deletions
39
...est/unit/data/testfiles/formatting/alignment/groupAlignmentAssignmentTypedConstants02.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
|
||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
class GH7190_01 { | ||
|
||
private const ?string C1 = ''; | ||
private const ?Test C2 = null; | ||
private const Test1|Test2|null C3 = null; | ||
private const array|(Test2&Test3) CONST4 = []; | ||
private const CONSTANT5 = []; | ||
} | ||
|
||
class GH7190_02 { | ||
|
||
private const ?string CONST1 = ''; | ||
public const Test CONST2 = null; | ||
private const ?int CONST3 = null; | ||
protected const ?array CONST4 = []; | ||
private const CONSTANT5 = []; | ||
const array|(Test2&Test3) CONST6 = []; | ||
} |
39 changes: 39 additions & 0 deletions
39
...entAssignmentTypedConstants02.php.testGroupAlignmentAssignmentTypedConstants02a.formatted
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
|
||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
class GH7190_01 { | ||
|
||
private const ?string C1 = ''; | ||
private const ?Test C2 = null; | ||
private const Test1|Test2|null C3 = null; | ||
private const array|(Test2&Test3) CONST4 = []; | ||
private const CONSTANT5 = []; | ||
} | ||
|
||
class GH7190_02 { | ||
|
||
private const ?string CONST1 = ''; | ||
public const Test CONST2 = null; | ||
private const ?int CONST3 = null; | ||
protected const ?array CONST4 = []; | ||
private const CONSTANT5 = []; | ||
const array|(Test2&Test3) CONST6 = []; | ||
} |
39 changes: 39 additions & 0 deletions
39
...entAssignmentTypedConstants02.php.testGroupAlignmentAssignmentTypedConstants02b.formatted
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
|
||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
class GH7190_01 { | ||
|
||
private const ?string C1 = ''; | ||
private const ?Test C2 = null; | ||
private const Test1|Test2|null C3 = null; | ||
private const array|(Test2&Test3) CONST4 = []; | ||
private const CONSTANT5 = []; | ||
} | ||
|
||
class GH7190_02 { | ||
|
||
private const ?string CONST1 = ''; | ||
public const Test CONST2 = null; | ||
private const ?int CONST3 = null; | ||
protected const ?array CONST4 = []; | ||
private const CONSTANT5 = []; | ||
const array|(Test2&Test3) CONST6 = []; | ||
} |
57 changes: 57 additions & 0 deletions
57
...r/test/unit/data/testfiles/formatting/alignment/groupAlignmentAssignmentTypedFields01.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<?php | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
class GH7190_01 { | ||
|
||
private ?string $t1 = ''; | ||
private ?Test $t2 = null; | ||
private Test1|Test2|null $t3 = null; | ||
private array|(Test2&Test3) $test4 = []; | ||
private $test5 = []; | ||
} | ||
|
||
class GH7190_02 { | ||
|
||
private ?string $test1 = ''; | ||
private Test $test2 = null; | ||
private ?int $test3 = null; | ||
private ?array $test4 = []; | ||
} | ||
|
||
class GH7190_03 { | ||
|
||
private ?string $t1 = ''; | ||
private ?Test $t2; | ||
private ?Test $t3 = null; | ||
private readonly Test1&Test2 $t4; | ||
private array |( Test2 & Test3 ) $test5 = []; | ||
} | ||
|
||
class GH7190_04 { | ||
|
||
private const ?string C1 = ''; | ||
public const ?string CCCC2 = ''; | ||
const ?string CCCC3 = ''; | ||
|
||
private ?Test $t2; | ||
private ?Test $t3 = null; | ||
private readonly Test1&Test2 $t4; | ||
private array|(Test2&Test3) $test5 = []; | ||
} |
Oops, something went wrong.