summaryrefslogtreecommitdiff
path: root/tests/app/FileTest.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2018-07-16 08:20:33 +0100
committerGreg Roach <fisharebest@webtrees.net>2018-07-16 08:20:33 +0100
commitc1010eda29c0909ed4d5d463f32d32bfefdd4dfe (patch)
treefbb656ebc014aa1295ac8e6176f41e89f94b91e7 /tests/app/FileTest.php
parent782f08d9bd2bfa06635da947ee34f8e1afd65088 (diff)
downloadwebtrees-c1010eda29c0909ed4d5d463f32d32bfefdd4dfe.tar.gz
webtrees-c1010eda29c0909ed4d5d463f32d32bfefdd4dfe.tar.bz2
webtrees-c1010eda29c0909ed4d5d463f32d32bfefdd4dfe.zip
Use PSR2 code style
Diffstat (limited to 'tests/app/FileTest.php')
-rw-r--r--tests/app/FileTest.php27
1 files changed, 15 insertions, 12 deletions
diff --git a/tests/app/FileTest.php b/tests/app/FileTest.php
index 3544adfaa9..e0c9fd2fe8 100644
--- a/tests/app/FileTest.php
+++ b/tests/app/FileTest.php
@@ -18,17 +18,20 @@
/**
* Test harness for the class File
*/
-class FileTest extends \PHPUnit\Framework\TestCase {
- /**
- * Prepare the environment for these tests
- */
- public function setUp() {
- }
+class FileTest extends \PHPUnit\Framework\TestCase
+{
+ /**
+ * Prepare the environment for these tests
+ */
+ public function setUp()
+ {
+ }
- /**
- * Test that the class exists
- */
- public function testClassExists() {
- $this->assertTrue(class_exists('\Fisharebest\Webtrees\File'));
- }
+ /**
+ * Test that the class exists
+ */
+ public function testClassExists()
+ {
+ $this->assertTrue(class_exists('\Fisharebest\Webtrees\File'));
+ }
}