Skip to content
This repository was archived by the owner on Oct 29, 2020. It is now read-only.

Commit cfc6293

Browse files
committed
fixed CS
1 parent 884d583 commit cfc6293

17 files changed

+12
-20
lines changed

DependencyInjection/Configuration.php

-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ public function resolveNodeType(array $parameters)
7474
public function getProviderNames(NodeInterface $tree)
7575
{
7676
foreach ($tree->getChildren() as $providers) {
77-
7877
if ($providers->getName() !== 'providers') {
7978
continue;
8079
}

Tests/DependencyInjection/Fixtures/Bundles/XmlBundle/XmlBundle.php

-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@
1818

1919
class XmlBundle extends Bundle
2020
{
21-
2221
}

Tests/DependencyInjection/Fixtures/Bundles/YamlBundle/YamlBundle.php

-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@
1818

1919
class YamlBundle extends Bundle
2020
{
21-
2221
}

Tests/Functional/BaseCacheTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ public function testCacheDriver()
4545
$this->assertTrue($cache->delete('key'));
4646
$this->assertFalse($cache->contains('key'));
4747
}
48-
}
48+
}

Tests/Functional/ChainCacheTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public function setUp()
3131
parent::setUp();
3232

3333
if (!class_exists('Doctrine\Common\Cache\ChainCache')) {
34-
$this->markTestSkipped('The ' . __CLASS__ .' requires the use of ChainCache available in doctrine/cache since 1.4');
35-
}
34+
$this->markTestSkipped('The ' . __CLASS__ .' requires the use of ChainCache available in doctrine/cache since 1.4');
35+
}
3636
}
3737

3838
/**

Tests/Functional/Command/StatsCommandTest.php

-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,5 @@ public function testStats()
5959
// This test is for Doctrine/Cache < 1.6.0 only
6060
$this->assertEquals("Stats were not provided for the {$this->cacheName} provider of type Doctrine\\Common\\Cache\\ArrayCache\n", $this->tester->getDisplay());
6161
}
62-
63-
6462
}
6563
}

Tests/Functional/FileSystemCacheTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ protected function createCacheDriver()
3636

3737
return $cache;
3838
}
39-
}
39+
}

Tests/Functional/Fixtures/Memcached.php

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
namespace Doctrine\Bundle\DoctrineCacheBundle\Tests\Functional\Fixtures;
55

6-
76
class Memcached extends \Memcached
87
{
98
protected $persistentId;

Tests/Functional/MemcacheCacheTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ protected function createCacheDriver()
5252

5353
return $cache;
5454
}
55-
}
55+
}

Tests/Functional/MemcachedCacheTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ protected function createCacheDriver()
6565

6666
return $cache;
6767
}
68-
}
68+
}

Tests/Functional/MongoDBCacheTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ protected function createCacheDriver()
5252

5353
return $cache;
5454
}
55-
}
55+
}

Tests/Functional/PhpFileCacheTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ protected function createCacheDriver()
3636

3737
return $cache;
3838
}
39-
}
39+
}

Tests/Functional/RiakCacheTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ protected function createCacheDriver()
5252

5353
return $cache;
5454
}
55-
}
55+
}

Tests/Functional/Sqlite3CacheTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ protected function createCacheDriver()
5252

5353
return $cache;
5454
}
55-
}
55+
}

Tests/Functional/VoidCacheTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ public function setUp()
3333
parent::setUp();
3434

3535
if (!class_exists('Doctrine\Common\Cache\VoidCache')) {
36-
$this->markTestSkipped('The ' . __CLASS__ .' requires the use of VoidCache available in doctrine/cache since 1.5');
37-
}
36+
$this->markTestSkipped('The ' . __CLASS__ .' requires the use of VoidCache available in doctrine/cache since 1.5');
37+
}
3838
}
3939

4040
public function testCacheDriver()

Tests/FunctionalTestCase.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,5 @@ protected function compileContainer($file, ContainerBuilder $container = null)
6464
*/
6565
protected function overrideContainer(ContainerBuilder $container)
6666
{
67-
6867
}
6968
}

Tests/TestCase.php

-1
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,4 @@ protected function createServiceContainer(array $bundles = array('YamlBundle'),
6464

6565
return $container;
6666
}
67-
6867
}

0 commit comments

Comments
 (0)