apply cs-fixer

This commit is contained in:
Manuel Raynaud
2013-08-14 09:29:04 +02:00
parent a3fcb222be
commit 078b1e0d57
125 changed files with 1339 additions and 1491 deletions

View File

@@ -22,12 +22,12 @@
/*************************************************************************************/
namespace Thelia\Tests\Command;
abstract class BaseCommandTest extends \PHPUnit_Framework_TestCase {
abstract class BaseCommandTest extends \PHPUnit_Framework_TestCase
{
public function getKernel()
{
$kernel = $this->getMock("Symfony\Component\HttpKernel\KernelInterface");
return $kernel;
}
}
}

View File

@@ -62,7 +62,6 @@ class CacheClearTest extends \PHPUnit_Framework_TestCase
$this->assertFalse($fs->exists($this->cache_dir));
}
/**
@@ -104,4 +103,4 @@ class CacheClearTest extends \PHPUnit_Framework_TestCase
return $container;
}
}
}

View File

@@ -22,14 +22,13 @@
/*************************************************************************************/
namespace Thelia\Tests\Command;
use Symfony\Component\Console\Tester\CommandTester;
use Symfony\Component\Filesystem\Filesystem;
use Thelia\Core\Application;
use Thelia\Command\ModuleGenerateCommand;
class ModuleGenerateCommandTest extends BaseCommandTest {
class ModuleGenerateCommandTest extends BaseCommandTest
{
protected $command;
protected $commandTester;
@@ -105,4 +104,4 @@ class ModuleGenerateCommandTest extends BaseCommandTest {
"name" => "thelia"
));
}
}
}