Skip to content

Commit 4eb8d72

Browse files
author
Vincent Langlet
committed
💄 Minor changes
1 parent 34ed289 commit 4eb8d72

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

Symfony3Custom/Sniffs/Classes/PropertyDeclarationSniff.php

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
11
<?php
22

3-
/**
4-
* This file is part of the Symfony3Custom-coding-standard (phpcs standard)
5-
*
6-
* PHP version 5
7-
*
8-
* @category PHP
9-
* @package Symfony3Custom-coding-standard
10-
* @author Authors <Symfony3Custom-coding-standard@escapestudios.github.com>
11-
* @license http://spdx.org/licenses/MIT MIT License
12-
* @link https://github.com/escapestudios/Symfony3Custom-coding-standard
13-
*/
14-
153
/**
164
* Throws warnings if properties are declared after methods
175
*/

Symfony3Custom/Tests/Commenting/FunctionCommentUnitTest.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* @param string $test Test Argument
55
*/
6-
function functionTest($test)
6+
function functionTest1($test)
77
{
88
return 42;
99
}
@@ -13,7 +13,7 @@ function functionTest($test)
1313
*
1414
* @return int
1515
*/
16-
function functionTest($test)
16+
function functionTest2($test)
1717
{
1818
return 42;
1919
}

0 commit comments

Comments
 (0)