Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ea33d4d

Browse filesBrowse files
committed
fixed CS
1 parent aa3e1a3 commit ea33d4d
Copy full SHA for ea33d4d

File tree

Expand file treeCollapse file tree

16 files changed

+34
-17
lines changed
Filter options
Expand file treeCollapse file tree

16 files changed

+34
-17
lines changed

‎src/Symfony/Bridge/Doctrine/Tests/Fixtures/SingleIdentEntity.php

Copy file name to clipboardExpand all lines: src/Symfony/Bridge/Doctrine/Tests/Fixtures/SingleIdentEntity.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ class SingleIdentEntity
2424
/** @Column(type="string", nullable=true) */
2525
public $name;
2626

27-
public function __construct($id, $name) {
27+
public function __construct($id, $name)
28+
{
2829
$this->id = $id;
2930
$this->name = $name;
3031
}

‎src/Symfony/Component/ClassLoader/Tests/Fixtures/php5.4/traits.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/ClassLoader/Tests/Fixtures/php5.4/traits.php
+4-2Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ trait TFoo {
44

55
}
66

7-
class CFoo {
7+
class CFoo
8+
{
89
use TFoo;
910
}
1011
}
@@ -22,7 +23,8 @@ trait TFooBar {
2223

2324
}
2425

25-
class CBar implements IBar {
26+
class CBar implements IBar
27+
{
2628
use TBar, TFooBar;
2729
}
2830
}

‎src/Symfony/Component/Console/Application.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Console/Application.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1033,7 +1033,8 @@ private function findAlternativeNamespace($name, $abbrevs)
10331033
*
10341034
* @return array A sorted array of similar string
10351035
*/
1036-
private function findAlternatives($name, $collection, $abbrevs, $callback = null) {
1036+
private function findAlternatives($name, $collection, $abbrevs, $callback = null)
1037+
{
10371038
$alternatives = array();
10381039

10391040
foreach ($collection as $item) {

‎src/Symfony/Component/EventDispatcher/Tests/ContainerAwareEventDispatcherTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/EventDispatcher/Tests/ContainerAwareEventDispatcherTest.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,8 @@ function onEvent(Event $e)
242242

243243
class SubscriberService implements EventSubscriberInterface
244244
{
245-
static function getSubscribedEvents() {
245+
static function getSubscribedEvents()
246+
{
246247
return array(
247248
'onEvent' => 'onEvent',
248249
'onEvent' => array('onEvent', 10),

‎src/Symfony/Component/Locale/Tests/TestCase.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Locale/Tests/TestCase.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ protected function isGreaterOrEqualThanIcuVersion($version)
7171
return $icuVersion >= $version;
7272
}
7373

74-
protected function isSameAsIcuVersion($version) {
74+
protected function isSameAsIcuVersion($version)
75+
{
7576
$version = $this->normalizeIcuVersion($version);
7677
$icuVersion = $this->normalizeIcuVersion($this->getIntlExtensionIcuVersion());
7778

‎src/Symfony/Component/Translation/Tests/Dumper/YamlFileDumperTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Translation/Tests/Dumper/YamlFileDumperTest.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616

1717
class YamlFileDumperTest extends \PHPUnit_Framework_TestCase
1818
{
19-
protected function setUp() {
19+
protected function setUp()
20+
{
2021
if (!class_exists('Symfony\Component\Yaml\Yaml')) {
2122
$this->markTestSkipped('The "Yaml" component is not available');
2223
}

‎src/Symfony/Component/Translation/Tests/Loader/CsvFileLoaderTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Translation/Tests/Loader/CsvFileLoaderTest.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616

1717
class CsvFileLoaderTest extends \PHPUnit_Framework_TestCase
1818
{
19-
protected function setUp() {
19+
protected function setUp()
20+
{
2021
if (!class_exists('Symfony\Component\Config\Loader\Loader')) {
2122
$this->markTestSkipped('The "Config" component is not available');
2223
}

‎src/Symfony/Component/Translation/Tests/Loader/IcuDatFileLoaderTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Translation/Tests/Loader/IcuDatFileLoaderTest.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616

1717
class IcuDatFileLoaderTest extends LocalizedTestCase
1818
{
19-
protected function setUp() {
19+
protected function setUp()
20+
{
2021
if (!class_exists('Symfony\Component\Config\Loader\Loader')) {
2122
$this->markTestSkipped('The "Config" component is not available');
2223
}

‎src/Symfony/Component/Translation/Tests/Loader/IcuResFileLoaderTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Translation/Tests/Loader/IcuResFileLoaderTest.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616

1717
class IcuResFileLoaderTest extends LocalizedTestCase
1818
{
19-
protected function setUp() {
19+
protected function setUp()
20+
{
2021
if (!class_exists('Symfony\Component\Config\Loader\Loader')) {
2122
$this->markTestSkipped('The "Config" component is not available');
2223
}

‎src/Symfony/Component/Translation/Tests/Loader/IniFileLoaderTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Translation/Tests/Loader/IniFileLoaderTest.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616

1717
class IniFileLoaderTest extends \PHPUnit_Framework_TestCase
1818
{
19-
protected function setUp() {
19+
protected function setUp()
20+
{
2021
if (!class_exists('Symfony\Component\Config\Loader\Loader')) {
2122
$this->markTestSkipped('The "Config" component is not available');
2223
}

‎src/Symfony/Component/Translation/Tests/Loader/MoFileLoaderTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Translation/Tests/Loader/MoFileLoaderTest.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616

1717
class MoFileLoaderTest extends \PHPUnit_Framework_TestCase
1818
{
19-
protected function setUp() {
19+
protected function setUp()
20+
{
2021
if (!class_exists('Symfony\Component\Config\Loader\Loader')) {
2122
$this->markTestSkipped('The "Config" component is not available');
2223
}

‎src/Symfony/Component/Translation/Tests/Loader/PhpFileLoaderTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Translation/Tests/Loader/PhpFileLoaderTest.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616

1717
class PhpFileLoaderTest extends \PHPUnit_Framework_TestCase
1818
{
19-
protected function setUp() {
19+
protected function setUp()
20+
{
2021
if (!class_exists('Symfony\Component\Config\Loader\Loader')) {
2122
$this->markTestSkipped('The "Config" component is not available');
2223
}

‎src/Symfony/Component/Translation/Tests/Loader/PoFileLoaderTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Translation/Tests/Loader/PoFileLoaderTest.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616

1717
class PoFileLoaderTest extends \PHPUnit_Framework_TestCase
1818
{
19-
protected function setUp() {
19+
protected function setUp()
20+
{
2021
if (!class_exists('Symfony\Component\Config\Loader\Loader')) {
2122
$this->markTestSkipped('The "Config" component is not available');
2223
}

‎src/Symfony/Component/Translation/Tests/Loader/QtTranslationsLoaderTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Translation/Tests/Loader/QtTranslationsLoaderTest.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616

1717
class QtTranslationsLoaderTest extends \PHPUnit_Framework_TestCase
1818
{
19-
protected function setUp() {
19+
protected function setUp()
20+
{
2021
if (!class_exists('Symfony\Component\Config\Loader\Loader')) {
2122
$this->markTestSkipped('The "Config" component is not available');
2223
}

‎src/Symfony/Component/Translation/Tests/Loader/XliffFileLoaderTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Translation/Tests/Loader/XliffFileLoaderTest.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616

1717
class XliffFileLoaderTest extends \PHPUnit_Framework_TestCase
1818
{
19-
protected function setUp() {
19+
protected function setUp()
20+
{
2021
if (!class_exists('Symfony\Component\Config\Loader\Loader')) {
2122
$this->markTestSkipped('The "Config" component is not available');
2223
}

‎src/Symfony/Component/Translation/Tests/Loader/YamlFileLoaderTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Translation/Tests/Loader/YamlFileLoaderTest.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616

1717
class YamlFileLoaderTest extends \PHPUnit_Framework_TestCase
1818
{
19-
protected function setUp() {
19+
protected function setUp()
20+
{
2021
if (!class_exists('Symfony\Component\Config\Loader\Loader')) {
2122
$this->markTestSkipped('The "Config" component is not available');
2223
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.