Skip to content

Commit dfc5e71

Browse files
committed
CS: fixes
1 parent d701757 commit dfc5e71

File tree

2 files changed

+19
-10
lines changed

2 files changed

+19
-10
lines changed

Tests/AbstractFormTest.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22

3-
/*
4-
* This file is part of the Symfony package.
5-
*
6-
* (c) Fabien Potencier <[email protected]>
7-
*
8-
* For the full copyright and license information, please view the LICENSE
9-
* file that was distributed with this source code.
10-
*/
3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
1111

1212
namespace Symfony\Component\Form\Tests;
1313

Tests/CallbackTransformerTest.php

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

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace Symfony\Component\Form\Tests;
413

514
use Symfony\Component\Form\CallbackTransformer;
@@ -30,8 +39,8 @@ public function testConstructorWithInvalidCallbacks($transformCallback, $reverse
3039
public function invalidCallbacksProvider()
3140
{
3241
return array(
33-
array( null, function () {} ),
34-
array( function () {}, null ),
42+
array(null, function () {}),
43+
array(function () {}, null),
3544
);
3645
}
3746
}

0 commit comments

Comments
 (0)