We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b33a8c commit e82ba2fCopy full SHA for e82ba2f
tests/db/DbMysqlVariableTest.php
@@ -11,8 +11,8 @@ public function it_returns_false_for_unexisting_mysql_variable()
11
$mock->shouldReceive('selectOne')
12
->withArgs(['show variables where variable_name = ?', ['fake']])
13
->once()
14
- ->andReturnNull()
15
- ;
+ ->andReturnNull();
+
16
$this->assertFalse(db_mysql_variable('fake'));
17
}
18
@@ -28,8 +28,8 @@ public function it_returns_value_for_known_mysql_variable()
28
$object->Variable_name = 'hostname';
29
$object->Value = 'localhost';
30
return $object;
31
- })
32
+ });
33
$this->assertEquals('localhost', db_mysql_variable('hostname'));
34
35
0 commit comments