Skip to content

Commit 85e15d3

Browse files
author
Vincent Langlet
committed
💄 Fix coding style in tests
1 parent ac484e5 commit 85e15d3

14 files changed

+15
-29
lines changed

Symfony3Custom/Tests/Arrays/MultiLineArrayCommaUnitTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
* A sniff unit test checks a .inc file for expected violations of a single
77
* coding standard. Expected errors and warnings are stored in this class.
88
*/
9-
class Symfony3Custom_Tests_Arrays_MultiLineArrayCommaUnitTest
10-
extends AbstractSniffUnitTest
9+
class Symfony3Custom_Tests_Arrays_MultiLineArrayCommaUnitTest extends AbstractSniffUnitTest
1110
{
1211
/**
1312
* Returns the lines where errors should occur.

Symfony3Custom/Tests/Classes/MultipleClassesOneFileUnitTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
* A sniff unit test checks a .inc file for expected violations of a single
77
* coding standard. Expected errors and warnings are stored in this class.
88
*/
9-
class Symfony3Custom_Tests_Classes_MultipleClassesOneFileUnitTest
10-
extends AbstractSniffUnitTest
9+
class Symfony3Custom_Tests_Classes_MultipleClassesOneFileUnitTest extends AbstractSniffUnitTest
1110
{
1211
/**
1312
* Returns the lines where errors should occur.

Symfony3Custom/Tests/Classes/PropertyDeclarationUnitTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
* A sniff unit test checks a .inc file for expected violations of a single
77
* coding standard. Expected errors and warnings are stored in this class.
88
*/
9-
class Symfony3Custom_Tests_Classes_PropertyDeclarationUnitTest
10-
extends AbstractSniffUnitTest
9+
class Symfony3Custom_Tests_Classes_PropertyDeclarationUnitTest extends AbstractSniffUnitTest
1110
{
1211
/**
1312
* Returns the lines where errors should occur.

Symfony3Custom/Tests/Commenting/ClassCommentUnitTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
* A sniff unit test checks a .inc file for expected violations of a single
77
* coding standard. Expected errors and warnings are stored in this class.
88
*/
9-
class Symfony3Custom_Tests_Commenting_ClassCommentUnitTest
10-
extends AbstractSniffUnitTest
9+
class Symfony3Custom_Tests_Commenting_ClassCommentUnitTest extends AbstractSniffUnitTest
1110
{
1211
/**
1312
* Returns the lines where errors should occur.

Symfony3Custom/Tests/Commenting/DocCommentForbiddenTagsUnitTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
* A sniff unit test checks a .inc file for expected violations of a single
77
* coding standard. Expected errors and warnings are stored in this class.
88
*/
9-
class Symfony3Custom_Tests_Commenting_DocCommentForbiddenTagsUnitTest
10-
extends AbstractSniffUnitTest
9+
class Symfony3Custom_Tests_Commenting_DocCommentForbiddenTagsUnitTest extends AbstractSniffUnitTest
1110
{
1211
/**
1312
* Returns the lines where errors should occur.

Symfony3Custom/Tests/Commenting/DocCommentGroupSameTypeUnitTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
* A sniff unit test checks a .inc file for expected violations of a single
77
* coding standard. Expected errors and warnings are stored in this class.
88
*/
9-
class Symfony3Custom_Tests_Commenting_DocCommentGroupSameTypeUnitTest
10-
extends AbstractSniffUnitTest
9+
class Symfony3Custom_Tests_Commenting_DocCommentGroupSameTypeUnitTest extends AbstractSniffUnitTest
1110
{
1211
/**
1312
* Returns the lines where errors should occur.

Symfony3Custom/Tests/Commenting/FunctionCommentUnitTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
* A sniff unit test checks a .inc file for expected violations of a single
77
* coding standard. Expected errors and warnings are stored in this class.
88
*/
9-
class Symfony3Custom_Tests_Commenting_FunctionCommentUnitTest
10-
extends AbstractSniffUnitTest
9+
class Symfony3Custom_Tests_Commenting_FunctionCommentUnitTest extends AbstractSniffUnitTest
1110
{
1211
/**
1312
* Returns the lines where errors should occur.

Symfony3Custom/Tests/Formatting/BlankLineBeforeReturnUnitTest.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
* A sniff unit test checks a .inc file for expected violations of a single
77
* coding standard. Expected errors and warnings are stored in this class.
88
*/
9-
class Symfony3Custom_Tests_Formatting_BlankLineBeforeReturnUnitTest
10-
extends AbstractSniffUnitTest
9+
class Symfony3Custom_Tests_Formatting_BlankLineBeforeReturnUnitTest extends AbstractSniffUnitTest
1110
{
1211
/**
1312
* Returns the lines where errors should occur.
@@ -20,7 +19,7 @@ class Symfony3Custom_Tests_Formatting_BlankLineBeforeReturnUnitTest
2019
public function getErrorList()
2120
{
2221
return array(
23-
37 => 1
22+
37 => 1,
2423
);
2524
}
2625

Symfony3Custom/Tests/NamingConventions/ValidClassNameUnitTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
* A sniff unit test checks a .inc file for expected violations of a single
77
* coding standard. Expected errors and warnings are stored in this class.
88
*/
9-
class Symfony3Custom_Tests_NamingConventions_ValidClassNameUnitTest
10-
extends AbstractSniffUnitTest
9+
class Symfony3Custom_Tests_NamingConventions_ValidClassNameUnitTest extends AbstractSniffUnitTest
1110
{
1211
/**
1312
* Returns the lines where errors should occur.

Symfony3Custom/Tests/NamingConventions/ValidScalarTypeNameUnitTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
* A sniff unit test checks a .inc file for expected violations of a single
77
* coding standard. Expected errors and warnings are stored in this class.
88
*/
9-
class Symfony3Custom_Tests_NamingConventions_ValidScalarTypeNameUnitTest
10-
extends AbstractSniffUnitTest
9+
class Symfony3Custom_Tests_NamingConventions_ValidScalarTypeNameUnitTest extends AbstractSniffUnitTest
1110
{
1211
/**
1312
* Returns the lines where errors should occur.

0 commit comments

Comments
 (0)