Passed
Pull Request — master (#224)
by Kai
02:51
created
tests/Unit/Db/EventMapperTest.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -29,17 +29,17 @@
 block discarded – undo
29 29
 
30 30
 class EventMapperTest extends UnitTestCase {
31 31
 
32
-	/** @var IDBConnection */
33
-	private $con;
34
-	/** @var EventMapper */
35
-	private $eventMapper;
32
+    /** @var IDBConnection */
33
+    private $con;
34
+    /** @var EventMapper */
35
+    private $eventMapper;
36 36
 
37
-	/**
38
-	 * {@inheritDoc}
39
-	 */
40
-	public function setUp() {
41
-		parent::setUp();
42
-		$this->con = \OC::$server->getDatabaseConnection();
43
-		$this->eventMapper = new EventMapper($this->con);
44
-	}
37
+    /**
38
+     * {@inheritDoc}
39
+     */
40
+    public function setUp() {
41
+        parent::setUp();
42
+        $this->con = \OC::$server->getDatabaseConnection();
43
+        $this->eventMapper = new EventMapper($this->con);
44
+    }
45 45
 }
Please login to merge, or discard this patch.
tests/Unit/Db/DateMapperTest.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -29,17 +29,17 @@
 block discarded – undo
29 29
 
30 30
 class DateMapperTest extends UnitTestCase {
31 31
 
32
-	/** @var IDBConnection */
33
-	private $con;
34
-	/** @var DateMapper */
35
-	private $dateMapper;
32
+    /** @var IDBConnection */
33
+    private $con;
34
+    /** @var DateMapper */
35
+    private $dateMapper;
36 36
 
37
-	/**
38
-	 * {@inheritDoc}
39
-	 */
40
-	public function setUp() {
41
-		parent::setUp();
42
-		$this->con = \OC::$server->getDatabaseConnection();
43
-		$this->dateMapper = new DateMapper($this->con);
44
-	}
37
+    /**
38
+     * {@inheritDoc}
39
+     */
40
+    public function setUp() {
41
+        parent::setUp();
42
+        $this->con = \OC::$server->getDatabaseConnection();
43
+        $this->dateMapper = new DateMapper($this->con);
44
+    }
45 45
 }
Please login to merge, or discard this patch.
tests/Unit/Db/ParticipationMapperTest.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -29,17 +29,17 @@
 block discarded – undo
29 29
 
30 30
 class ParticipationMapperTest extends UnitTestCase {
31 31
 
32
-	/** @var IDBConnection */
33
-	private $con;
34
-	/** @var ParticipationMapper */
35
-	private $participationMapper;
32
+    /** @var IDBConnection */
33
+    private $con;
34
+    /** @var ParticipationMapper */
35
+    private $participationMapper;
36 36
 
37
-	/**
38
-	 * {@inheritDoc}
39
-	 */
40
-	public function setUp() {
41
-		parent::setUp();
42
-		$this->con = \OC::$server->getDatabaseConnection();
43
-		$this->participationMapper = new ParticipationMapper($this->con);
44
-	}
37
+    /**
38
+     * {@inheritDoc}
39
+     */
40
+    public function setUp() {
41
+        parent::setUp();
42
+        $this->con = \OC::$server->getDatabaseConnection();
43
+        $this->participationMapper = new ParticipationMapper($this->con);
44
+    }
45 45
 }
Please login to merge, or discard this patch.
tests/Unit/Db/TextMapperTest.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -29,17 +29,17 @@
 block discarded – undo
29 29
 
30 30
 class TextMapperTest extends UnitTestCase {
31 31
 
32
-	/** @var IDBConnection */
33
-	private $con;
34
-	/** @var TextMapper */
35
-	private $textMapper;
32
+    /** @var IDBConnection */
33
+    private $con;
34
+    /** @var TextMapper */
35
+    private $textMapper;
36 36
 
37
-	/**
38
-	 * {@inheritDoc}
39
-	 */
40
-	public function setUp() {
41
-		parent::setUp();
42
-		$this->con = \OC::$server->getDatabaseConnection();
43
-		$this->textMapper = new TextMapper($this->con);
44
-	}
37
+    /**
38
+     * {@inheritDoc}
39
+     */
40
+    public function setUp() {
41
+        parent::setUp();
42
+        $this->con = \OC::$server->getDatabaseConnection();
43
+        $this->textMapper = new TextMapper($this->con);
44
+    }
45 45
 }
Please login to merge, or discard this patch.