Apply fixes from StyleCI (#12117)

* Apply fixes from StyleCI

* Disable style check
This commit is contained in:
Jellyfrog
2020-09-21 14:54:51 +02:00
committed by GitHub
parent 8ec9183df5
commit 77c531527c
752 changed files with 6238 additions and 5833 deletions

View File

@@ -32,8 +32,7 @@ class RrdDefinitionTest extends TestCase
{
public function testEmpty()
{
$this->assertEmpty((string)new RrdDefinition());
$this->assertEmpty((string) new RrdDefinition());
}
public function testWrongType()
@@ -52,7 +51,7 @@ class RrdDefinitionTest extends TestCase
$expected = 'DS:bad_name-is_too_lon:GAUGE:600:0:100 ';
$def = RrdDefinition::make()->addDataset('b a%d$_n:a^me-is_too_lon%g.', 'GAUGE', 0, 100, 600);
$this->assertEquals($expected, (string)$def);
$this->assertEquals($expected, (string) $def);
}
public function testCreation()